Skip to content

Instantly share code, notes, and snippets.

@BenFausch
Created January 7, 2018 17:57
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 BenFausch/73f4f6e0fab5806eb3b53f9697777a64 to your computer and use it in GitHub Desktop.
Save BenFausch/73f4f6e0fab5806eb3b53f9697777a64 to your computer and use it in GitHub Desktop.
log all mouseover events, useful for finding elements to target
window.onmouseover=function(e) {
console.log(e.target.className);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment