I'm building a multilevel (fixed to 3 levels) menu using JQuery. Everything is working fine but what I'd like to do is making all the levels disappear when any of them are being hovered.
I'm looking for something like this:
$('#categories AND #subcategories AND #tags').live('-NOT-mouseover', function(){
$('#categories, #subcategories, #tags').remove();
});
Also, I don't know how to get an AND operator on a JQuery selector.