How can I reverse an order with jquery?
I tried with the suggestion like this but it won\'t work!
$($(\".block-item\").get().reverse()).each(function() {
If you have a container around the list, it's a little easier:
$("#container").append($(".block-item").get().reverse());
http://jsfiddle.net/BhTEN/12/