select selected text jquery code example
Example 1: jquery selected option text
$("#mySelect option:selected").html();
Example 2: get selected option text jquery
$("#id option:selected").text();
$("#mySelect option:selected").html();
$("#id option:selected").text();