how to get selected option text code example
Example 1: how to fetch the selected value of dropdown jquery
BY LOVE
$('#ddlName option:selected').val();
Example 2: jquery selected option text
$("#mySelect option:selected").html();
Example 3: get selected option text jquery
$("#id option:selected").text();