Created
April 11, 2018 02:44
-
-
Save griffiths/4061f2d48a1b25edf6ab1746748b6b3d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(window).mousemove(function(event) { | |
var msg = "Handler for .mousemove() called at "; | |
msg += event.pageX + ", " + event.pageY; | |
console.log(msg); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment