I have a bunch of divs like this:

<div class="bear"></div>
<div class="dog"></div>

How do I get a nodelist that includes all divs with class of bear and dog? I tried:

Y.get(".bear .dog").each(function() {

});

But it returns null. Anyone have any suggestions? Thanks!

link|improve this question

feedback

3 Answers

up vote 7 down vote accepted

Based on how CSS selectors work, it should be .bear, .dog

link|improve this answer
Thanks! It worked perfectly. – ash Aug 21 '09 at 19:44
feedback

Along with VoteyDisciple's answer, you should change the get to all.

For example:

YUI().use('node',function(Y) {
   console.log(Y.get(".bear, .dog").size());  // prints out 1
   console.log(Y.all(".bear, .dog").size());  // prints out 2
});
link|improve this answer
Very true. Thanks! – ash Aug 21 '09 at 21:50
feedback
YUI().use('node',function(Y) {
   console.log(Y.get(".bear + .dog").size());  
   console.log(Y.all(".bear + .dog").size());  
});

This could be done to select a node which has both bear and dog as classes.

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.