Get the value and text of a select box with jQuery
January 26, 2012 14:26:23 Last update: January 26, 2012 14:26:23
To get the value:
To get the text:
$('#idOfTheSelectDropdown :selected').val();
To get the text:
$('#idOfTheSelectDropdown :selected').text()