Modify ↓
Ticket #9143 (closed bug: duplicate)
Wrong behavior for "mouseenter" and "mouseleave" with "live"
| Reported by: | denis@… | Owned by: | |
|---|---|---|---|
| Priority: | high | Milestone: | 1.next |
| Component: | event | Version: | 1.6 |
| Keywords: | Cc: | ||
| Blocking: | Blocked by: |
Description
e.type returns "mouseover" when "mouseenter" fires and "mouseout" when "mouseleave" fires. See an example:
$('ul li').live('mouseenter mouseleave', function (e) {
var target = e.target ? e.target : event.srcElement;
console.log(e.type);
...
});
it looks like "mouseenter" behaves like "mouseover" and "mouseleave" like "mouseout".
Change History
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.
Note: See
TracTickets for help on using
tickets.
