jquery dropdown list selected value code example
Example 1: how to fetch the selected value of dropdown jquery
BY LOVE
$('#ddlName option:selected').val();
Example 2: jquery: get selected option of the drop down list
$('#ddlID').val();
$('#ddlID').text();