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

Could anybody please let me know that how would I select my dropdown list item by text rather than value?

I want to select Dropdown item by text with jQuery.

Thanks in advance.

share|improve this question

3 Answers

up vote 7 down vote accepted

use :contains()(link)

$("select option:contains(text)").attr('selected', true);

demo

share|improve this answer
If you need to do a variable: var text = "Item 1"; $("select option:contains(" + text + ")").attr('selected', true); – ROFLwTIME May 18 '12 at 15:22

There is a filter function on jQuery that you can use to get elements with something more specific

$("select option").filter(function() {
    return $(this).text() == "text_to_select";
});

This is going to return all options with the "text_to_select" in the text.

share|improve this answer

i think this will do the trick for you...

$("#selectId").find("option:contains('text')").each(function(){
  if( $(this).text() == 'Text that should be matched' ) {
    $(this).attr("selected","selected");
  }
});
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.