I want to bind a call mouseoutto two CSS selectors so that if I move my mouse from one AND the other element, then I call something else. Is it possible?
mouseout
You can use something like
$("#selector1, #selector2").bind("mouseout", function(){ // code goes here });
Read Multiple Selector ("selector1, selector2, selectorN")
Multiple Selector ("selector1, selector2, selectorN")
$('.class1, .class2').mousemove(callbackFunction);