jquery get value from 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();
BY LOVE
$('#ddlName option:selected').val();
$("#mySelect option:selected").html();