select text using 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();
BY LOVE
$("#Id option:selected").text()
$("#mySelect option:selected").html();