Is it possible to sequentially move text up on a webpage from a list?
Example: Website has this on it.
Text1
Text2
Text3
I want to be able to hit a button that deletes the top text1, then moves text2 into position 1's spot, and text 3 into text2's position.
Then adds position 3 from a list of some sort? And continues this forever when I click the button whenever I want?
Each text will be contained inside its own html with formatting like.
Example:
Blah Bleh
Text1
Blah Bleh
Text2
Blah Bleh
Text3
I just dont want to have to continually manually open its source then change the names manually then upload it. Its based on a random interval, so I cant set a time for it I have to do it manually. It would be awesome if i could just hit a button and a script deletes the top and moves the rest upwards then adds a new position 3 from a list of some sort.
Is that possible?