Guest User

Untitled

a guest
Jul 21st, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. (function() {
  2. var events = ["load", "error"];
  3.  
  4. events.forEach(function(type) {
  5. document.addEventListener(type, function(e) {
  6. console.log('[Event] ' + type, e.target);
  7. }, true);
  8. });
  9.  
  10. })();
Add Comment
Please, Sign In to add comment