#6615 closed bug (fixed)
Delegated 'mouseenter' and 'mouseleave' events are reported as 'mouseover' 'mouseout'
Reported by: | bartaz | Owned by: | |
---|---|---|---|
Priority: | low | Milestone: | 1.4.3 |
Component: | event | Version: | 1.4.2 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
Delegated mouseenter
and mouseleave
events are reported as mouseover
and mouseout
in event type property.
For example:
$(document).delegate('div', 'mouseenter mouseleave', function(ev){ console.log(ev.type); });
reports mouseover
and mouseleave
;
The same with 'hover' alias that is said to be mapped to mouseenter
and mouseleave
.
This behaviour should be documented or fixed as it is confusing for developers that want to check the type of delegated events.
Change History (2)
comment:1 Changed 13 years ago by
comment:2 Changed 12 years ago by
Priority: | → low |
---|---|
Resolution: | → fixed |
Status: | new → closed |
This issue no longer exists
Note: See
TracTickets for help on using
tickets.
I created a basic test case at: http://jsfiddle.net/auK46/