selected dropdown text in jquery code example
Example 1: get text of selected option jquery
$('#id').children(':selected').text();
Example 2: how to get the selected text of dropdown in jquery
BY LOVE
$("#Id option:selected").text()
Example 3: get text in select jquery
$("#id option:selected").text();