Here’s some example code
<div id="one">One</div><div id="two">Two</div><div id="three">Three</div>
And let’s say the CSS is
div {float:left;}
Is there anyway to make the divs appear as Three, Two, One, besides something like float:right? JavaScript and jQuery not excluded.
That’s actually the exact example used on this JQuery documentation page for
$.makeArray():