I\'d like to sort DOM elements that has data attributes defined for rating and date. What is the best way to implement sorting on the front-end with jQuery?
Sample
Here is the basic idea...
var sortedSet = $('#sort li').toArray().sort(function(a, b) {
return $(a).data('rating') - $(b).data('rating');
});
You select the elements, convert them to a proper array, and then sort (the comparison function I used is an example, change it to suit your requirements).
jsFiddle with lowest button.