How can I get the selected text (not the selected value) from a drop-down list in jQuery?
$("#dropdownID").change(function(){ alert($('option:selected', $(this)).text()); });