Skip to content

Instantly share code, notes, and snippets.

@ademilter
Created March 21, 2020 21:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ademilter/3c41af192c018f9440ee98d7d2c8ac17 to your computer and use it in GitHub Desktop.
Save ademilter/3c41af192c018f9440ee98d7d2c8ac17 to your computer and use it in GitHub Desktop.
get element from point - javascript
const on_hover = e => {
const $target = document.elementFromPoint(e.clientX, e.clientY)
console.log($target)
}
document.body.addEventListener('mousemove', on_hover)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment