In YUI 3 I have a node that is my select box:

Y.get('#regionSelect');

How do I get the <option> values that are currently selected (even if there are more than one?) Also, is there a tutorial out there that tells me explicitly how to do this (I don't want to serialize a whole form)?

link|improve this question

feedback

3 Answers

up vote 5 down vote accepted

Once you have the selector, you can chain get and each

Y.get("#regionSelect").get("options").each( function() {
   // this = option from the select
   var selected = this.get('selected');
   var value  = this.get('value');
   var text = this.get('text');
   // apply secret sauce here
});

I've just been using the demos/examples on http://developer.yahoo.com/yui/3/ to figure things out.

link|improve this answer
Thanks! Where does it say how to get attributes? – ash Jul 28 '09 at 23:19
1  
You are welcome. Any JavaScript tutorial about the DOM should have the attribs for the select and option objects (as well as all the others). Those aren't YUI specific but part of the DOM. For instance: w3schools.com/htmldom/dom_obj_select.asp – seth Jul 28 '09 at 23:46
The 'selected' and 'text' are actually selectors, not attributes. Left that out.... – seth Jul 28 '09 at 23:50
1  
Did you mean "Y.one("#regionSelect")"? Worked for me when I used .one() instead of .get() – Danjah May 13 '11 at 8:29
feedback

// Selected Value

  • Y.one('#regionSelect')._node.value;
  • Y.one('#regionSelect').get('value');

// Selected Index

  • Y.one('#regionSelect')._node.selectedIndex;
  • Y.one('#regionSelect').get('selectedIndex');
link|improve this answer
this always returns an empty string...doesn't one have to get the options and then their value ? – Sloin Feb 21 '11 at 1:16
The "_node" property is not part of the YUI Node API. You should never rely on it. – Nathan Mar 23 '11 at 5:30
"_node" is visual private object property based on YUI coding standards – Jarod Law Mar 24 '11 at 7:01
feedback

You might not need to iterate through all options if you need just a selected one:

var index = Y.get("#regionSelect").get('selectedIndex');
var value = Y.get("#regionSelect").get("options").item(index).getAttribute('value');
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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