Skip to content

Instantly share code, notes, and snippets.

@pavlosvos
Created December 9, 2019 10:11
Show Gist options
  • Save pavlosvos/a2c83f1b0db3e581ed0595c0ec617a0d to your computer and use it in GitHub Desktop.
Save pavlosvos/a2c83f1b0db3e581ed0595c0ec617a0d to your computer and use it in GitHub Desktop.
JS snippet prints out to console elements in the dom clicked .
document.body.addEventListener('click', clickedItem);
function clickedItem(e){
console.log('clicked item');
console.log(e.target);
console.log(e.typeOf);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment