vote up 0 vote down star

The following code rearranges elements by the attribute "amount". How can I alter this code so the items will be reversed? Thanks.

var parent = $('#items');
var children = $('a', parent);
children.sort(function(a, b) {
    return parseInt($(a).attr('amount')) - parseInt($(b).attr('amount'));
})

$.each(children, function(i, child) {
    parent.append(child);
});
flag

4 Answers

vote up 2 vote down check

Change the order of the values you are comparing (b-a instead of a-b):

var children = $('a', parent).sort(function(a, b) {
    return parseInt($(b).attr('amount'), 10) - parseInt($(a).attr('amount'), 10);
});
link|flag
1  
Don't forget the radix parameter on parseInt, e.g. parseInt($(b).attr('amount'), 10) – Greg Nov 6 at 16:39
1  
$.fn.sort does not return an array, it returns the jQuery wrapped set again, which does not contain a reverse method. – Crescent Fresh Nov 6 at 16:44
Thanks, the first example didn't work, the second did. – unknown (google) Nov 6 at 16:49
vote up 0 vote down

Use prepend instead of append?

http://docs.jquery.com/Manipulation/prepend#content

link|flag
vote up 0 vote down
children.sort(function(a, b) {
    return parseInt($(a).attr('amount')) < parseInt($(b).attr('amount')) ? 0 : 1;
});
link|flag
vote up 0 vote down

I've used this technique. It's ideal for small collections.

jQuery.fn.reverse = function() {
   return this.pushStack(this.get().reverse(), arguments);
};

var r = $('.class').reverse();
link|flag

Your Answer

Get an OpenID
or

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