Skip to content

Instantly share code, notes, and snippets.

@iworkforthem
Created December 22, 2016 09:23
Show Gist options
  • Save iworkforthem/c4421147735524b5677f3207d7316452 to your computer and use it in GitHub Desktop.
Save iworkforthem/c4421147735524b5677f3207d7316452 to your computer and use it in GitHub Desktop.
addEventListener to body specified tag.
document.querySelector("body").addEventListener('click', function(e) {
var a = e.target.closest('a');
if (a !== null) {
console.log(a);
}
}, false);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment