get selected element from a drop down select menu in jquery code example
Example 1: how to get the value of dropdown in jquery
BY LOVE
$('#ddlName option:selected').val();
Example 2: jquery get dropdown list selected value
$('#dropDownId').val();