Skip to content

Instantly share code, notes, and snippets.

@egulhan
Created April 29, 2015 08:05
Show Gist options
  • Select an option

  • Save egulhan/8e311fab2da43df17e70 to your computer and use it in GitHub Desktop.

Select an option

Save egulhan/8e311fab2da43df17e70 to your computer and use it in GitHub Desktop.
How-to sort elements in HTML using Javascript
// @source: http://stackoverflow.com/questions/20693593/sort-select-options-by-value-attribute-using-jquery
var selectList = $('#featuredSelectField option');
selectList.sort(function(a,b){
a = a.value;
b = b.value;
return a-b;
});
$('#featuredSelectField').html(selectList);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment