Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
<div class="fuu">
  ...
</div>

<div class="fuu no">
  ...
</div>

...

How can I select all fuu's besides the ones that have the .no class?

share|improve this question

3 Answers

up vote 15 down vote accepted

Use :not() to exclude the other class:

$('.fuu:not(.no)')
share|improve this answer
6  
A little tidbit: .fuu:not(.no) is also a valid CSS3 selector, and will match the same elements on browsers that support :not(). Thus I believe jQuery will hand this selector to querySelectorAll() instead of relying on Sizzle for those browsers, thereby improving performance on those browsers. Not that anyone cares, of course :) – BoltClock Apr 5 '11 at 3:33

You can also filter out the '.no' class with something like:

$('.fuu').not('.no');
share|improve this answer

get the div's class name, if it has a SPACE in the class name then it means it has more than one class !

share|improve this answer
And what if there was a <div class="fuu yes">? It doesn't have the no class, but it would return false for .attr('class') == 'fuu'. – BoltClock Apr 5 '11 at 3:32

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.