up vote 206 down vote favorite
51
share [g+] share [fb]

All right, say I have this:

<select id='list'>
    <option value='1'>Option A</option>
    <option value='2'>Option B</option>
    <option value='3'>Option C</option>
</select>

What would the selector look like if I wanted to get "Option B" when I have the value '2'?

Please note that this is not asking how to get the selected text value, but just any one of them, whether selected or not, depending on the value attribute. I tried:

$("#list[value='2']").text();

But it is not working.

link|improve this question

55  
Gosh, looking back at this question is so embarrassing. :/ I plead temporary insanity. – Paolo Bergantino Jul 15 '09 at 3:55
5  
Don't feel bad. I saw this question and thought, "Huh? Paolo?" :-) – Patrick McElhaney Jul 26 '09 at 0:34
4  
Brain cramps are universal, like eating, we all do it sometimes, the trick is not to get fat on it :) – Mark Schultheiss Jun 4 '10 at 14:44
feedback

protected by Community Aug 8 '11 at 2:15

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

11 Answers

up vote 219 down vote accepted

It's looking for an element with id list which has a property value equal to 2. What you want is the option child of the list.

$("#list option[value='2']").text()
link|improve this answer
Thank you for this nickf. Here is this answer expanded if you want to get the value dynamically: var selectValue = document.getElementById('list').value; var selectOption = $("#list option[value=" + selectValue + "]").text(); ///good example nickf. – Kevin Apr 5 '11 at 13:48
29  
@Kevin, in that case, you might want to use the answer below this one. $('#list option:selected').text() – nickf Apr 5 '11 at 16:10
thanks nickf..i love your answer and works perfectly for me.. :) – deepeshk Jul 11 '11 at 3:40
feedback
$("#list option:selected").text();
link|improve this answer
4  
this is to get the current selected option text, more details about this issue: marcgrabanski.com/article/jquery-select-list-values – Amr ElGarhy Jul 28 '09 at 15:20
3  
Not what was asked for though – JeroenEijkhof Jun 17 '10 at 18:00
4  
To get the value instead of the text, you will need to write:- $("select#list").val(); I know that this is not the actual answer of the question asked, but still thought of mentioning this point for newbies coming through Google. – Knowledge Craving Jun 19 '10 at 20:50
13  
Thank you for this answer, though, it helped me with something else. – gknauth Sep 9 '10 at 7:27
4  
just helped me! – Andrew Jackman Nov 29 '10 at 10:46
show 4 more comments
feedback

Based on the original HTML posted by Paolo I came up with the following.

$("#list").change(function() {
    alert($(this).find("option:selected").text()+' clicked!');
});

It has been tested to work on Internet Explorer and Firefox.

link|improve this answer
feedback
$("#list option:selected").each(function() {
   alert($(this).text());
});  

for multiple selected value in the #list element.

link|improve this answer
feedback

Try the following:

$("#list option[value=2]").text();

The reason why your original snippet wasn't working is because your OPTION tags are children to your SELECT tag, which has the id list.

link|improve this answer
feedback

This worked perfectly for me, I was looking for a way to send two different values with options generated by MySQL, and the following is generic and dynamic:

$(this).find("option:selected").text();

As mentioned in one of the comments. With this I was able to create a dynamic function that works with all my selection boxes that I want to get both values, the option value and the text.

link|improve this answer
nice & elegant, thanks. – significance Aug 6 '11 at 14:45
feedback

I wanted to get the selected label. This worked for me in jQuery 1.5.1.

$("#list :selected").text();
link|improve this answer
The only one that worked for me – Justin Vincent Apr 28 '11 at 18:38
feedback
$("#list [value='2']").text();

leave a space after the id selector.

link|improve this answer
feedback

While "looping" through dynamically created select elements with a .each(function()...): $("option:selected").text(); and $(this + " option:selected").text() did not return the selected option text - instead it was null.

But Peter Mortensen's solution worked:

$(this).find("option:selected").text();

I do not know why the usual way does not succeed in a .each() (probably my own mistake), but thank you, Peter. I know that wasn't the original question, but am mentioning it "for newbies coming through Google."

I would have started with $('#list option:selected").each() except I needed to grab stuff from the select element as well.

link|improve this answer
feedback

well there answers are good hope you like mine too

function selected_state(){
jQuery("#list option").each(function(){
    if(jQuery(this).val() == "2"){
    jQuery(this).attr("selected","selected");
    return false;
    }
});
}

jQuery(document).ready(function(){

selected_state();

});

link|improve this answer
hi thanks for help. my problem case is not this but get an idea from your ans :-) – Hameed Jul 12 '11 at 7:48
feedback

I wanted a dynamic version for select multiple that would display what is selected to the right (wish I'd read on and seen $(this).find... earlier):

<script type="text/javascript">
$(document).ready(function(){
$("select[showChoices]").each(function(){
$(this).after("<span id='spn"+$(this).attr('id')+"' style='border:1px solid black;width:100px;float:left;white-space:nowrap;'>&nbsp;</span>");
doShowSelected($(this).attr('id'));//shows initial selections
}).change(function(){
doShowSelected($(this).attr('id'));//as user makes new selections
});
});
function doShowSelected(inId){
var aryVals=$("#"+inId).val();
var selText="";
for(var i=0; i<aryVals.length; i++){
var o="#"+inId+" option[value='"+aryVals[i]+"']";
selText+=$(o).text()+"<br>";
}
$("#spn"+inId).html(selText);
}
</script>
<select style="float:left;" multiple="true" id="mySelect" name="mySelect" showChoices="true">
<option selected="selected" value=1>opt 1</option>
<option selected="selected" value=2>opt 2</option>
<option value=3>opt 3</option>
<option value=4>opt 4</option>
</select>
link|improve this answer
feedback

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