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>
link|improve this question
are you doing a sorting type of thing? If not you can do something like this api.jquery.com/get – Matt Mar 18 '11 at 3:50
I'm not really sorting here, but I have a separate task that will involve sorting. Thanks for the tip. – tilleryj Mar 18 '11 at 16:52
feedback

4 Answers

up vote 9 down vote accepted
ul = $('ul'); // your parent element
ul.children().each(function(i,li){ul.prepend(li)})
link|improve this answer
i dont think that would get rid of the listed elements though. So you would get a reverse list and the original list. Correct me if im wrong. – Matt Mar 18 '11 at 3:56
1  
@Matt - a DOM element can only exist at one place, so in this case it is moved around, not copied. – Anurag Mar 18 '11 at 3:59
@Anurag - interesting. Nice to know. Thanks. – Matt Mar 18 '11 at 4:02
1  
in fact, you can copy and paste the code and try it on this page, and see the menu bar reverse itself. – Brian Mortenson Mar 18 '11 at 4:02
+1, very cool... – Jon Freeland Mar 18 '11 at 18:11
show 1 more comment
feedback
var list = $('ul');
var listItems = list.children('li');
list.append(listItems.get().reverse());
link|improve this answer
feedback

To reverse the order of elements, take a look at the jQuery Reverse Order plugin.

$('ul li').reverseOrder();  
link|improve this answer
feedback

Try this:

$(function() {
  $.fn.reverse = [].reverse;
  var x = $('li');
  $('ul').empty().append(x.reverse());
});
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.