I have jQuery but I'm not sure if it has any built-in sorting helpers. I could make a 2d array of each item's text, value, and selected properties, but I don't think that javascript's built in Array.sort() would work correctly.
|
|
|
||
|
|
|
|
If you do want to sort on value alone, or interpret value as a number, then you can pass a comparison function into sort():
|
||
|
|
|
|
bdukes I like your answer but it would not sort a select list in place for me? Instead the options had to be pulled into a temporary array, sorted, then the list rebuilt:
|
||
|
|
|
|
There's a closed jQuery ticket for a sort that should work, but just wasn't included in the core.
Referenced from a Google Groups thread, I think you just pass in a function that is used to sort, like so
Hope it helps! |
|||
|
|
|
|
Well, in IE6 it seems to sort on the nested array's [0] item:
I'll see if this works in other browsers... Edit: it works in Firefox too, woo hoo! Is there an easier way than this though? is there some method built into javascript or jQuery that sorts selects that I am missing, or is this the best way? |
||||
|
