Trier les options d’un select
0
function sort_multi_select(select) { var x = jQuery(select + \' option\'); x.remove(); x.sort(function(a,b) { a = a.firstChild.nodeValue; b = b.firstChild.nodeValue; if (a==b) return 0; return (a>b) ? 1 : -1; }); x.appendTo(select); }; Useage sample:
DATE 07 Juin 2011