Skip to content

Instantly share code, notes, and snippets.

@cramforce
Created February 2, 2011 14:19
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save cramforce/807723 to your computer and use it in GitHub Desktop.
Save cramforce/807723 to your computer and use it in GitHub Desktop.
(function() {
var events = ["load", "error"];
events.forEach(function(type) {
document.addEventListener(type, function(e) {
console.log('[Event] ' + type, e.target);
}, true);
});
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment