jQuery's mouseenter doesn't seem to fire when the mouse entered an element because of a scroll (i.e., as a result of scrolling).
Imagine the mouse pointer is currently not inside an element. Then you scroll using the scroll-wheel, resulting in the mouse pointer (which has not moved at all) being inside the element. jQuery will not fire the mouseenter callback. How can I get the mouseenter callback to fire in this case?
See http://mobdealio.com/131/?view=LIST&city=3 for an example. My idea is to update the map on the left when the user mouse's over a deal. But if the user scrolls using the scroll-wheel, then the map doesn't update (unless the user nudges the mouse a tiny bit).
Edit: I experience this issue in Chrome 15.0.874.121 m & Windows 7.