How to get label of select option with jQuery?
Hi first give an id to the select as
<select id=theid>
<option value="test">label </option>
</select>
then you can call the selected label like that:
jQuery('#theid option:selected').text()
Try this:
$('select option:selected').text();