Skip to content

Instantly share code, notes, and snippets.

@benshimmin
Created December 19, 2012 07:51
Show Gist options
  • Save benshimmin/4335123 to your computer and use it in GitHub Desktop.
Save benshimmin/4335123 to your computer and use it in GitHub Desktop.
How to deal with debugging in-browser JavaScript if a third-party has over-written window.onerror to fail silently
// In your browser's developer console, put this:
window.onerror = function(error) { return false; };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment