I have floating box on my site. I show it on mousenter and hide onmouseleave. Like this:
$(box).mouseenter(function(evt) {showBox();});
and
$(what).parent().mouseleave(function(evt) {hideBox();});
When I perform quick mouse move over the “box” it shows up.
How not to show it in that case?
Thanks.
1 Answer