Skip to content

Instantly share code, notes, and snippets.

@imjjss
Created October 9, 2012 05:15
Show Gist options
  • Save imjjss/3856753 to your computer and use it in GitHub Desktop.
Save imjjss/3856753 to your computer and use it in GitHub Desktop.
get value from selction
//single selction
$(‘#selectList’).val();
//get text of the option
$(‘#selectList :selected’).text();
//from multi selction
var foo = [];
$(‘#multiple :selected’).each(function(i, selected){
foo[i] = $(selected).text();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment