Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a select control, and in a javascript variable I have a text string.

Using jQuery I want to set the selected element of the select control to be the item with the text description I have (as opposed to the value, which I don't have).

I know setting it by value is pretty trivial. e.g.

$("#my-select").val(myVal);

But I'm a bit stumped on doing it via the text description. I guess there must be a way of getting the value out from the text description, but my brain is too Friday afternoon-ed to be able to work it out.

Any ideas SO people?

share|improve this question

11 Answers

up vote 303 down vote accepted

Given this HTML:

<select>
    <option value="0">One</option>
    <option value="1">Two</option>
</select>

Select by description for jQuery v1.6+:

var text1 = 'Two';
$("select option").filter(function() {
    //may want to use $.trim in here
    return $(this).text() == text1; 
}).prop('selected', true);

Select by description for jQuery versions below 1.6 and greater than or equal to 1.4: http://stackoverflow.com/a/3644500/31532

var text1 = 'Two';
$("select option").filter(function() {
    //may want to use $.trim in here
    return $(this).text() == text1; 
}).attr('selected', true);

Note that while this approach will work in versions that are above 1.6 but less than 1.9, it has been deprecated since 1.6. It will not work in jQuery 1.9+.

Select by description for previous versions:

val() should handle both cases. Are you not seeing it?

Eg:

$('select').val('1'); // selects "Two"
$('select').val('Two'); // also selects "Two"
share|improve this answer
3  
This feels like it shouldn't work (it appears it could be ambiguous) but it actually should work fine for me. Thanks. – DanSingerman Jan 30 '09 at 16:28
56  
Note that jQuery 1.4 has now changed this behavior to select by value if the attribute has been specified, and only select by text if the value attribute is missing. So in this example $('select').val('Two') will select the second option in 1.3.x, but will do nothing in 1.4.x. – Crescent Fresh Mar 3 '10 at 19:34
14  
So, what's the best way to do it in 1.4 now? – JR Lawhorne Apr 3 '10 at 6:38
3  
In more recent versions of jQuery, .val('not-an-option-value') will reset the select to the first option. – dland May 3 '11 at 9:29
4  
The first answer to this question appears to be the solution post 1.3.x stackoverflow.com/questions/3644449/… – DA. Dec 20 '11 at 0:34
show 6 more comments

Try this...to select the option with text myText

$("#my-Select option[text=" + myText +"]").attr("selected","selected") ;
share|improve this answer
@spoulson's answer worked for me...I tried to do it without the .each – CarolinaJay65 Jan 30 '09 at 16:55
1  
I like this approach. – spoulson Jan 30 '09 at 18:31
1  
In many cases, this approach doesn't work unfortunately. I even had to resolve to classic $("#my-Select option[text=" + myText +"]").get(0).selected = true; style from time to time :(... – Shehi Mar 6 '11 at 21:15
1  
This method doesnt seem to work for 1.9 – Mark W Oct 12 '12 at 14:22
1  
Make sure that you are first removing the selected attribute before re-setting, otherwise it will appear not to work (works for me in 1.9) – esse Mar 6 at 6:42

I haven't tested this, but this might work for you.

$("select#my-select option")
   .each(function() { this.selected = (this.text == myVal); });
share|improve this answer
Thanks. Works great in 1.4+ – Jagd Aug 24 '11 at 18:21
2  
Great, top answer! – DaveUK Jun 25 '12 at 8:50
good job spoulson! – Pavan Katepalli Oct 28 '12 at 21:17
The best answer! – davykiash 2 days ago
$("#myselect option:contains('YourTextHere')").val();

will return the value of the first option containing your text description. Tested this and works.

share|improve this answer
Thanks - I think this might be the version I use, as I also need to have logic for when there is no matching text, and this seems the easiest mechanism, for being able to do that. – DanSingerman Jan 30 '09 at 17:17
1  
bear in mind, it will get only the value for the first option matching the text. – Russ Cam Jan 30 '09 at 18:32
In addition, you could chain attr("selected","selected") onto the wrapped set instead of val() and this would work similar to CarolinaJay65's answer – Russ Cam Jan 30 '09 at 18:57
 $("#Test").find("option:contains('two')").each(function(){
     if( $(this).text() == 'two' ) {
        $(this).attr("selected","selected");
     }
 });

The if statement does a exact match with "two" and "two three" will not be matched

share|improve this answer
@jagd do u mean $("#Test").Val('two') will do the trick – Web Developer Aug 27 '11 at 14:37
No, that's not what I meant. I think my comment was a bit unclear, so I just deleted it. I did upvote your answer though, because it worked for my situation. – Jagd Sep 20 '11 at 18:42

take a look at the jquery selectedbox plugin

selectOptions(value[, clear]): 

Select options by value, using a string as the parameter $("#myselect2").selectOptions("Value 1");, or a regular expression $("#myselect2").selectOptions(/^val/i);.

You can also clear already selected options: $("#myselect2").selectOptions("Value 2", true);

share|improve this answer

Easiest way with 1.7+ is:

$("#myDropDown option:text=" + myText +"").attr("selected", "selected"); 

Tested and works.

share|improve this answer

Get the children of the select box; loop through them; when you have found the one you want, set it as the selected option; return false to stop looping.

share|improve this answer

I had a problem with the examples above, and the problem was caused by the fact that my select box values are prefilled with fixed length strings of 6 characters, but the parameter being passed in wasn't fixed length.

I have an rpad function which will right pad a string, to the length specified, and with the specified character. So, after padding the parameter it works.

$('#wsWorkCenter').val(rpad(wsWorkCenter, 6, ' '));


function rpad(pStr, pLen, pPadStr) {
if (pPadStr == '') {pPadStr == ' '};
while (pStr.length < pLen)
    pStr = pStr + pPadStr;
return pStr; 
} 
share|improve this answer

with jquery 1.7+ you will have to do something like this:

for item in $('.language select option')
     if $(item).html()==selectedCountry then $(item).attr("selected",true)

Note that this is coffeescript use this if you want it in javascript

share|improve this answer

To avoid all jQuery version complications, I honestly recommend using one of these really simple javascript functions...

function setSelectByValue(eID,val)
{ //Loop through sequentially//
  var ele=document.getElementById(eID);
  for(var ii=0; ii<ele.length; ii++)
    if(ele.options[ii].value==val) { //Found!
      ele.options[ii].selected=true;
      return true;
    }
  return false;
}

function setSelectByText(eID,text)
{ //Loop through sequentially//
  var ele=document.getElementById(eID);
  for(var ii=0; ii<ele.length; ii++)
    if(ele.options[ii].text==text) { //Found!
      ele.options[ii].selected=true;
      return true;
    }
  return false;
}
share|improve this answer
How does this help at all? – Neal May 8 at 15:50
It enables the selection of an select option via value or text (depending on function called). For example: setSelectByValue('sausages','2'); Will find, and select, the option with value "2" in the selection object with an id of "sausages". – Dave May 8 at 15:55
1  
I dunno, you try and help someone and that's the thanks you get :) – Dave May 8 at 16:16

protected by lonesomeday May 25 '11 at 15:07

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.