MouseMove event repeating every second
http://jsfiddle.net/MrkY9/ My computer (and so far, no other computer among my coworkers) is exhibiting an issue in Chrome, IE, and Safari (but not in Firefox). Simple mousemove code, such as the following (already running on the fiddle above) properly catches mousemove events, but then as long as the mouse is in the div, catches a mousemove event every second - even though I'm no longer moving the mouse. var number = 0; $("#foo").on("mousemove", function() { this.innerHTML = number++ }); This seems to be a browser-based problem, since it doesn't exhibit on FireFox. (Nor does it occur on