get text from select jquery code example
Example 1: get text of selected option jquery
$('#id').children(':selected').text();
Example 2: get text selected option jquery
$('#id option:selected').text()
Example 3: jquery selected option text
$("#mySelect option:selected").html();
Example 4: jquery selected option text
$( "#myselect option:selected" ).text();
Example 5: get text in select jquery
$("#id option:selected").text();
Example 6: get selected option text jquery
I think this should be $("#yourdropdownid").children("option").filter(":selected").text() since is() returns a boolean of whether the object matches the selector or not.