Skip to main content

Bug Tracker

Side navigation

#6833 closed bug (invalid)

Opened July 27, 2010 06:24PM UTC

Closed July 28, 2010 02:12AM UTC

.live() mapping to "mouseenter mouseleave" events in IE8 bug

Reported by: bmatto Owned by:
Priority: Milestone: 1.4.3
Component: event Version: 1.4.2
Keywords: live hover Cc:
Blocked by: Blocking:
Description

Attaching "hover" or "mouseenter mouseleave" to live() has "flickering" problem in IE8:

ex:

$("table tr").live("hover", function(e){

if(e.type="mouseover"){

something awesome!

}else{

the reverse of awesome!

}

});

Works in all tested browsers accept IE8 ... where the mouseeenter and mouseleave intended interactions fail to the mouseover and mouseout interactions thus the "flickering" occurs.

Attachments (0)
Change History (1)

Changed July 28, 2010 02:12AM UTC by dmethvin comment:1

resolution: → invalid
status: newclosed

Please reopen and attach a complete test case file that fills in the awesome.