Question: How can I get an dropdownlist selected text in jQuery?
Answer:
you can use following JQuery syntax for this:
you can use following JQuery syntax for this:
var selected_value = $('#'+yourdropdownid).val(); var display_text = $("#yourdropdownid [value='"+selected_value+"']").text();