brothercake
04-28-2003, 05:00 PM
I've got a bunch of nodes - a list:
<ul>
<li>one</li>
<li>two</li>
<li>three</li>
<li>four</li>
</ul>
What's the quickest / easiest way of rearranging those nodes so they go 4-3-2-1?
Would it perhaps be possible to prototype something like a sort() method for node structures?
<ul>
<li>one</li>
<li>two</li>
<li>three</li>
<li>four</li>
</ul>
What's the quickest / easiest way of rearranging those nodes so they go 4-3-2-1?
Would it perhaps be possible to prototype something like a sort() method for node structures?