How to get label of select option with jQuery?
jquery, select
Solution
Try this:
$('select option:selected').text();
Problem
``` <select> <option value="test">label </option> </select> ``` The value can be retrieved by `$select.val()`. What about the `label`? Is there a solution that will work in IE6?