... ... ...
How can I select all fuu\'s besides
fuu
Use :not() to exclude the other class:
$('.fuu:not(.no)')
You can also filter out the '.no' class with something like:
$('.fuu').not('.no');
get the div's class name, if it has a SPACE in the class name then it means it has more than one class !