To get the text of the selected option I do:

$("select option:selected").text()

How could I set an option based on it's text ?

See here

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

This would work:

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

Example: http://jsfiddle.net/ADp6L/1/

link|improve this answer
Very nice! Thanks! – Misha Moroshko Mar 3 '11 at 1:29
See my comment below .... – chprpipr Mar 3 '11 at 1:33
1  
I like how clean this solution is. Just make sure that none of your options will contain text that is a substring of another option or you might get false positives. Will :contains take a regex by chance? – chprpipr Mar 3 '11 at 1:35
feedback

Clear the old selection out first and then loop through the options, canceling the loop once the correction option is found.

$("select option").removeAttr("selected").each(function() {
    var jThis = $(this);

    if (jThis.text() == "mytext") {
        jThis.attr("selected", "selected");
        return false;
    }

});
link|improve this answer
+1 for supplying an alternative that eliminates false positives. I made a fiddle for this alternative: jsfiddle.net/HFnb7 – t.mikael.d May 9 at 9:58
feedback

Your Answer

 
or
required, but never shown

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