I have a div with width:5px and height:400px (for example). If i want to fire a function when this div is hovered, the Event is not recognized when i move my mouse too fast over it (It doesnt matter if i use mouseover/mouseenter/mousemove).
You can see a working example here: http://jsfiddle.net/2YZvk/
This is my Function:
jQuery(document).ready(function(){
jQuery('.hover_test').bind('mouseenter',function(){
jQuery(this).css('background-color','#30a900');
});
});
Is it possible to fire this event somehow, even if i move my mouse too fast? Making the div wider is not an option...