jquery check selected option data 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 value
$("select.your-select").change(function(){
$(this).children("option:selected").val();
});