What is the best way to reverse the order of child elements with jQuery.
For example, if I start with:
<ul>
<li>A</li>
<li>B</li>
<li>C</li>
</ul>
I want to end up with this:
<ul>
<li>C</li>
<li>B</li>
<li>A</li>
</ul>
|
What is the best way to reverse the order of child elements with jQuery. For example, if I start with:
I want to end up with this:
| |||||
feedback
|
| |||||||||||||||
feedback
|
| |||
|
feedback
|
|
To reverse the order of elements, take a look at the jQuery Reverse Order plugin.
| |||
|
feedback
|
|
Try this:
| |||
|
feedback
|