Skip to content

Instantly share code, notes, and snippets.

@dmacompton
Created October 23, 2015 07:17
Show Gist options
  • Save dmacompton/94d9f35ae438f85195ae to your computer and use it in GitHub Desktop.
Save dmacompton/94d9f35ae438f85195ae to your computer and use it in GitHub Desktop.
Mouse Position
$(document).mousemove(function(event) {
currentMousePos.x = event.pageX;
currentMousePos.y = event.pageY;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment