Skip to content

Instantly share code, notes, and snippets.

@tamura
Created June 16, 2015 02:36
Show Gist options
  • Save tamura/7170c41066f3e1cea137 to your computer and use it in GitHub Desktop.
Save tamura/7170c41066f3e1cea137 to your computer and use it in GitHub Desktop.
window.onmousemove = handleMouseMove;
function handleMouseMove(event) {
event = event || window.event; // IE
console.log( event.clientX + ", " + event.clientY );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment