Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
<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?

share|improve this question
You mean how to get value of selected, the selected value ? which is in your case label ? – ant Feb 1 '10 at 9:47

6 Answers

up vote 84 down vote accepted

Try this:

$('select option:selected').text();
share|improve this answer
This isn't always correct. The option's shown description can be specified by a 'label' attribute as well (except <= IE7). See w3schools.com/tags/att_option_label.asp#gsc.tab=0 and w3.org/TR/html401/interact/forms.html#h-17.6 – Scott Stafford Apr 2 at 18:47
<SELECT id="sel" onmouseover="alert(this.options[1].text);"
<option value=1>my love</option>
<option value=2>for u</option>
</SELECT>
share|improve this answer
$("select#selectbox option:eq(0)").text()

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

share|improve this answer

You're looking for $select.html()

http://api.jquery.com/html/

share|improve this answer
That just returns the html for all option elements. The label text is /in/ there somewhere, but it's not the most efficient way to get at it. – MSpreij Aug 31 '12 at 14:05

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()
share|improve this answer

To get the label of a specific option in a dropdown yo can ty this --

$('.class_of_dropdown > option[value='value_to_be_searched']').html();

or

$('#id_of_dropdown > option[value='value_to_be_Searched']').html();
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.