Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
129  
Gosh, looking back at this question is so embarrassing. :/ I plead temporary insanity. – Paolo Bergantino Jul 15 '09 at 3:55
13  
Don't feel bad. I saw this question and thought, "Huh? Paolo?" :-) – Patrick McElhaney Jul 26 '09 at 0:34
14  
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
If you didn't ask this question, you would have never learned about it, so better to ask a stupid question than to remain ignorant forever. – Val Apr 18 at 13:03

15 Answers

up vote 456 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()
share|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
107  
@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.. :) – Confused Programmer Jul 11 '11 at 3:40
1  
@nickf , and more simpler, $('#list').val() – Derek 朕會功夫 Apr 28 '12 at 23:38
2  
@Derek ,val() will not give the text of the option, it will give its value, which in some cases (many I dare say) is not the same. – itsmequinn Jan 10 at 14:39
$("#list option:selected").text();
share|improve this answer
6  
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
7  
Not what was asked for though – JeroenEijkhof Jun 17 '10 at 18:00
6  
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
25  
Thank you for this answer, though, it helped me with something else. – gknauth Sep 9 '10 at 7:27
6  
just helped me! – Andrew Jackman Nov 29 '10 at 10:46
show 5 more comments

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.

share|improve this answer

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.

Few days ago I noticed that when updating the jQuery from 1.6 to 1.9 of the site I used this code, this stop working... probably was a conflict with another piece of code... anyway, the solution was to remove option from the find() call:

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

That was my solution... use it only if you have any problem after updating your jQuery.

share|improve this answer
nice & elegant, thanks. – significance Aug 6 '11 at 14:45
$("#list option:selected").each(function() {
   alert($(this).text());
});  

for multiple selected value in the #list element.

share|improve this answer

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.

share|improve this answer
$('#list option[value="2"]').text(); // correct selector – Evgeni Nabokov Mar 27 '12 at 12:05
  1. If there is only one select tag in form then you can specify select inside of id 'list'

    jQuery("select option[value=2]").text();
    
  2. To get selected text

    jQuery("select option:selected").text();
    
share|improve this answer

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

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

leave a space after the id selector.

share|improve this answer

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.

share|improve this answer

Use:

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();
});
share|improve this answer
hi thanks for help. my problem case is not this but get an idea from your ans :-) – chhameed Jul 12 '11 at 7:48

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

As an alternative solution, you can also use a context part of jQuery selector to find <option> element(s) with value="2" inside the dropdown list:

$("option[value='2']", "#list").text();
share|improve this answer

I needed this answer as I was dealing with a dynamically cast object, and the other methods here did not seem to work:

element.options[element.selectedIndex].text

This of course uses the DOM object instead of parsing its HTML with nodeValue, childNodes, etc.

share|improve this answer
$(this).children(":selected").text()
share|improve this answer

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.

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