drop down selected text in jquery code example
Example 1: how to get the selected text of dropdown in jquery
BY LOVE
$("#Id option:selected").text()
Example 2: jquery selected option text
$("#mySelect option:selected").html();
Example 3: get option value jquery
$('#state option[data-id="2"]').val();
//output state2