Reputation: 169
How can I get selected text from drop-down list using jQuery, not using the selected value?
Upvotes: 1
Views: 1062
Reputation: 4320
Try any of below:
$("#yourdropdownid option:selected").text();
$("#yourdropdownid option").is("selected").text();
Upvotes: 2