> $$('ul.menu li:not(.parent.active)')
with this syntax it takes effect on the whole menu at the same time. i
want to take effect separately.
> $$('selector').filter(function(el){
> return !(el.hasClass('parent') && el.hasClass('active'));
> });
is it possible to extend this code that also elements will be excluded
which has class ''item33', 'item34' and 'item35'.
tried something like (el.hasClass('parent') && el.hasClass('active') &
el.hasClass('item33') ,.... ); but it doesn't work. i cant find syntax
for OR element.