Skip to content

Instantly share code, notes, and snippets.

@joshcp
Created November 21, 2018 00:18
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 joshcp/f478ee5dd55e61f7e38d7c41d409b888 to your computer and use it in GitHub Desktop.
Save joshcp/f478ee5dd55e61f7e38d7c41d409b888 to your computer and use it in GitHub Desktop.
for(let elem of document.querySelectorAll('*')) {
elem.addEventListener("click", e => console.log(`Capturing: ${elem.tagName}`), true);
elem.addEventListener("click", e => console.log(`Bubbling: ${elem.tagName}`));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment