How do I fire the jQuery's
mouseleave
event when the mouse is NOT over elementA AND elementB ?
For a better understanding see example here.
Wrapping both of the elements in a containerC and fire the event from that is not an option, because I have elementA and elementB in two different table cells.
I'm not trying to make a multiple element selection (,). I'm traying to emulate the logical AND (&&). As above, the event must be fired when the mouse is neither over elementA nor elementB...
I hope you understand my question...
This will add a class
mouse_over
when mouse enters either of the elements. It will then check that there are nomouse_over
elements when amouseleave
is detected. The setTimeout is required to allow the mouseenter to fire before the mouseleave and may require additional tweaking to eliminate race conditionsWorking Fiddle