text of selected option jquery code example
Example 1: jquery get selected option value
var selectedOptionText = $('#mySelectID').find(":selected").text();//selected option text
var selectedOptionVal = $('#mySelectID').find(":selected").val();//selected option value
Example 2: get text of selected option jquery
$('#id').children(':selected').text();
Example 3: how to get the selected text of dropdown in jquery
BY LOVE
$("#Id option:selected").text()
Example 4: 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.