Say I have a HTML form containing this select element:

  <select name="mySelect" id="mySelect">
    <option value="1" id="option1">1</option>
    <option value="2" id="option2">2</option>
  </select>

How can I use prototype to select one of the option elements?

The methods listed in the API reference of Form.Element don't seem to help with this.

edit: by "select" I mean the equivalent effect of the "selected" attribute on an option element.

link|improve this question
feedback

7 Answers

up vote 10 down vote accepted
var options = $$('select#mySelect option');
var len = options.length;
for (var i = 0; i < len; i++) {
    console.log('Option text = ' + options[i].text);
    console.log('Option value = ' + options[i].value);
}

options is an array of all option elements in #mySelect dropdown. If you want to mark one or more of them as selected just use selected property

// replace 1 with index of an item you want to select
options[1].selected = true;
link|improve this answer
1  
So basically it's $("option1").selected = true, right? – lutz Aug 7 '09 at 8:48
1  
If you have id's for your all options set then yes, you can do it like that. – RaYell Aug 7 '09 at 9:18
Thanks, then I'll do this. – lutz Aug 7 '09 at 9:29
feedback

To get the currently selected option, use:

$$('#mySelect option').find(function(ele){return !!ele.selected})
link|improve this answer
feedback

nils petersohn almost got it right, but typically, the option's "id" attribute is not what people are selecting against. this small change makes it work.

var selectThis = 'option1';
$$('select#mySelectId option').each(function(o) {
  if(o.readAttribute('value') == selectThis) { // note, this compares strings
    o.selected = true;
    throw $break; // remove this if it's a multi-select
  }
});
link|improve this answer
feedback
var selectThis = 'option1';
$$('select#mySelect option').each(function(o){
      if(o.id==selectThis){o.selected = true;$break;}
});
link|improve this answer
feedback

For selecting the second option by value you could use this:

var myChoice = '2';

$$('select#mySelectId option').each(function(o) {
    o.selected = o.readAttribute('value') == myChoice;
});
link|improve this answer
feedback
var itis = $(mySelectId).select('option[value="' + sValueToSelect + '"]');
if ( itis && itis.length > 0 )
    itis[0].selected = true;
link|improve this answer
feedback

Assuming you know what value you want to be selected, try:

$('mySelect').value = 2; // 2 being the value you want selected
link|improve this answer
.value isn't a valid jQuery attribute – James Wiseman Feb 7 at 13:41
feedback

Your Answer

 
or
required, but never shown