<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?
|
|
Try this:
|
|||
|
|
||||
|
|
The 0 index in the "option:eq(0)" can be exchanged for whichever indexed option you'd like to retrieve. This is helpful: http://www.myphpetc.com/2009/03/jquery-select-element-cheat-sheet.html |
|||
|
|
|
You're looking for |
|||
|
|
Hi first give an id to the select as
then you can call the selected label like that:
|
|||
|
|
|
To get the label of a specific option in a dropdown yo can ty this --
or
|
||||
|
|