Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save devdays/a7ef831c34e22a6fdddb to your computer and use it in GitHub Desktop.
Save devdays/a7ef831c34e22a6fdddb to your computer and use it in GitHub Desktop.
Object JavaScript - this refers to object originating event
window.addEventListener("error", function (event) {
event.target.src = 'some_path';
// `this` will point to window
// `event.target` will point to the element that had an error
}, true);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment