MouseEnter and MouseLeave

The problem is that mouseout events are fired when moving into a child elementand mouseover events are fired when moving from a child element. This behavior is confusing.

Example Usage:

$('nav').observe('mouseover', myMouseEnterCallback.bindAsMouseEnter(scope, arg1, arg2));

Read ›