If I have 3 Div boxes (any number really) ordered in the following manor:
<div>
<div id="one"></div>
<div id="two"></div>
<div id="three"></div>
</div>
How can I make the div with id one
be displayed after the div with id three
without changing the structure of the html?
This is what the html should be displayed as:
________________________
| ____________________ |
| | id=two | |
| | | |
| |__________________| |
| ____________________ |
| | id=three | |
| | | |
| |__________________| |
| ____________________ |
| | id=one | |
| | | |
| |__________________| |
|______________________|