Let's say you have a <div> element which is hidden.

There is a mouseover event attached to it and the mouse cursor is placed at the location where the <div> element will appear once it is visible.

How I can prevent the mouseover event from firing when the <div> is made visible?

link|improve this question

43% accept rate
feedback

1 Answer

up vote 1 down vote accepted

You can't. The event is fired when the mouse is over a new element in Gecko, whether due to the mouse moving or elements moving. This is quite purposeful; it makes things like CSS :hover work correctly when the mouse is not moving.

link|improve this answer
As I thought, thanks :) – bozhidarc Oct 18 '11 at 11:56
@bozhidarc no problem. Note that in some other browsers :hover in fact does NOT update correctly when elements move... – Boris Zbarsky Oct 18 '11 at 13:50
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.