#7756 closed bug (duplicate)
mouseover and mouseout events are not fired within live in 1.4.4
Reported by: | Owned by: | ||
---|---|---|---|
Priority: | high | Milestone: | 1.6 |
Component: | event | Version: | 1.4.4 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
I just upgraded from jQuery 1.4.2 to 1.4.4. The following code got broken: $('#element').live('hover',function(ev) {
if (ev.type =='mouseover') {
Something
} else if (ev.type == 'mouseout') {
Something else
}
}
If I do debug printing on ev.type, I receive only mouseenter and mouseleave messages. Is this a bug or an enhancement? Tried to look for it in the release notes but couldn't find such a behavior change.
Many thanks!
Change History (4)
comment:2 Changed 12 years ago by
Component: | unfiled → event |
---|---|
Priority: | undecided → high |
Status: | new → open |
comment:3 Changed 12 years ago by
Resolution: | → duplicate |
---|---|
Status: | open → closed |
Note: See
TracTickets for help on using
tickets.
I believe hover binds events to mouseenter/mouseleave not mouseover/mouseout.
see: http://api.jquery.com/hover/
It does seem to work in 1.4.2 though
http://jsfiddle.net/uUq3B/