select all dropdown jquery code example
Example 1: jquery get all select options
//looping through options select with jQuery
$("#mySelectID option").each(function(){
var thisOptionValue=$(this).val();
});
Example 2: jquery get dropdown list selected value
$('#dropDownId').val();
Example 3: jquery: get selected option of the drop down list
$('#ddlID').val();
$('#ddlID').text();