how to get dropdown 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: get text selected option jquery
$('#id option:selected').text()
Example 3: get selected option text jquery
$("#id option:selected").text();