Updated on Kisan Patel
Problem:
How to Get selected text from a drop-down list using jQuery?
How can I get a drop-down list selected text in jQuery, not using the selected value?
Solution:
You need to use below code:
$("#yourdropdownid option:selected").text();
Reference URL: https://api.jquery.com/selected-selector/