Skip to content

Instantly share code, notes, and snippets.

@ashsaraga
Created February 14, 2022 17:16
Show Gist options
  • Save ashsaraga/72b9e9b626cdb7030855ad696fd1cb12 to your computer and use it in GitHub Desktop.
Save ashsaraga/72b9e9b626cdb7030855ad696fd1cb12 to your computer and use it in GitHub Desktop.
Quick script to `console.log()` any element clicked on.
window.onclick = e => {
console.log(e.target);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment