.is(":hover") is broken as of jQuery 1.9 How to fix
Assuming your selector is #myid
, use $('#myid:hover')
instead of using .is()
.
If you are using $(this)
or a variable, use myVar.filter(':hover')
.
Assuming your selector is #myid
, use $('#myid:hover')
instead of using .is()
.
If you are using $(this)
or a variable, use myVar.filter(':hover')
.