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