Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save anton-chernianu/e6e25ccc07de33eef19ad88a7adfd926 to your computer and use it in GitHub Desktop.
Save anton-chernianu/e6e25ccc07de33eef19ad88a7adfd926 to your computer and use it in GitHub Desktop.
Javascript Check Mouse Position
window.onmousemove = logMouseMove;
function logMouseMove(event) {
let e = event || window.event;
mousePos = { x: e.clientX, y: e.clientY };
console.log(mousePos);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment