Skip to content

Instantly share code, notes, and snippets.

@pazguille
Created October 23, 2012 10:03
Show Gist options
  • Save pazguille/3937995 to your computer and use it in GitHub Desktop.
Save pazguille/3937995 to your computer and use it in GitHub Desktop.
Event Delegation
document.addEventListener('click', function (event) {
event = event || window.event;
var target = event.target || event.srcElement;
console.log(target);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment