how to check the selected value of dropdown through ajax and jquery code example
Example 1: how to fetch the selected value of dropdown jquery
BY LOVE
$('#ddlName option:selected').val();
Example 2: alert dropdown selected text
$(".qualificationStatus option:selected").text()