Sort optionlist alphabetically $Plugin
//USAGE: $(selector).sortAlphabetically();
$.fn.sortAlphabetically = function () {
var elements = this.find("option");
elements.sort(function (a, b) {
if (a.text > b.text) return 1;
else if (a.text < b.text) return -1;
else return 0
});
this.empty().append(elements);
return this;
};
Written by Ion D. Filho
Related protips
Have a fresh tip? Share with Coderwall community!
Post
Post a tip
Best
#.net
Authors
Sponsored by #native_company# — Learn More
#native_title#
#native_desc#