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>
var list = $('ul'); var listItems = list.children('li'); list.append(listItems.get().reverse());
Edit: Anurag's answer is better than mine.
ul = $('#my-ul'); // your parent ul element ul.children().each(function(i,li){ul.prepend(li)})
If you call .prepend() on an object containing more than one element, the element being appended will be cloned for the additional target elements after the first, so be sure you're only selecting a single element.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With