How can I get the selected text (not the selected value) from a drop-down list in jQuery?
Select Text and selected value on dropdown/select change event in jQuery
$("#yourdropdownid").change(function() { console.log($("option:selected", this).text()); //text console.log($(this).val()); //value })