How can I get the selected text (not the selected value) from a drop-down list in jQuery?
This works for me:
$('#yourdropdownid').find('option:selected').text();
jQuery version: 1.9.1