up vote 32 down vote favorite
16
share [g+] share [fb]

I'm a bit out of my depth here and I'm hoping this is actually possible.

I'd like to be able to call a function that would sort all the items in my list alphabetically.

I've been looking through the jQuery UI for sorting but that doesn't seem to be it. Any thoughts?

link|improve this question
3  
feedback

protected by Community Jan 16 at 13:02

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

3 Answers

up vote 22 down vote accepted

You do not need jQuery to do this...

function sortUnorderedList(ul, sortDescending) {
  if(typeof ul == "string")
    ul = document.getElementById(ul);

  // Idiot-proof, remove if you want
  if(!ul) {
    alert("The UL object is null!");
    return;
  }

  // Get the list items and setup an array for sorting
  var lis = ul.getElementsByTagName("LI");
  var vals = [];

  // Populate the array
  for(var i = 0, l = lis.length; i < l; i++)
    vals.push(lis[i].innerHTML);

  // Sort it
  vals.sort();

  // Sometimes you gotta DESC
  if(sortDescending)
    vals.reverse();

  // Change the list on the page
  for(var i = 0, l = lis.length; i < l; i++)
    lis[i].innerHTML = vals[i];
}

Easy to use...

sortUnorderedList("ID_OF_LIST");

Live Demo →

link|improve this answer
2  
One problem that I found with this approach is that, since it's only the text that's being moved around, if you associate data to the DOM nodes using jQuery.data prior to sorting, those associations are now pointing to the wrong nodes after the sort. – Rudism Oct 28 '11 at 13:57
@Rudism If you're using jQuery, refer to SolutionYogi's answer below – Josh Stodola Oct 28 '11 at 15:38
Note that var lis = ul.children should suffice here (and is far more efficient). Also note that lis[i].textContent is preferred (as it's more efficient and get's the actual text). – Raynos Jan 16 at 12:51
feedback

Something like this:

var mylist = $('#myUL');
var listitems = mylist.children('li').get();
listitems.sort(function(a, b) {
   var compA = $(a).text().toUpperCase();
   var compB = $(b).text().toUpperCase();
   return (compA < compB) ? -1 : (compA > compB) ? 1 : 0;
})
$.each(listitems, function(idx, itm) { mylist.append(itm); });

From this page: http://www.onemoretake.com/2009/02/25/sorting-elements-with-jquery/

Above code will sort your unordered list with id 'myUL'.

OR you can use a plugin like TinySort. http://plugins.jquery.com/project/TinySort

link|improve this answer
2  
excellent! just what i needed – Andrew Bullock Feb 3 '10 at 13:19
1  
Can the last line be replaced with $(listitems).appendTo(mylist); ? – Amir Jun 30 '10 at 6:00
me too, thanks!! – ina Aug 11 '10 at 19:53
10  
H. L. Menken has a quote that describes this solution: "For every problem, there is a solution that is simple, elegant, and wrong." This process runs in O(n^2) time. It's not noticable with relatively short lists, but on a list containing over 100 elements it takes 3-4 seconds to finish sorting. – Nathan Strong Dec 29 '10 at 19:19
1  
Something can be elegant and intriguing to watch, but still fail. Elegance doesn't imply success. – Bob Sep 29 '11 at 14:55
show 1 more comment
feedback
$(".list li").sort(asc_sort).appendTo('.list');
//$("#debug").text("Output:");
// accending sort
function asc_sort(a, b){
    return ($(b).text()) < ($(a).text());    
}

// decending sort
function dec_sort(a, b){
    return ($(b).text()) > ($(a).text());    
}

live demo : http://jsbin.com/eculis/edit#javascript,html,live

link|improve this answer
feedback