Skip to content

Instantly share code, notes, and snippets.

@Vftdan
Created July 2, 2018 21:37
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 Vftdan/b7e9ae34033a7f8421d3c1e1f23586e9 to your computer and use it in GitHub Desktop.
Save Vftdan/b7e9ae34033a7f8421d3c1e1f23586e9 to your computer and use it in GitHub Desktop.
Open stackoverflow after error
window.onerror = function(msg) {
msg = msg.replace(/^Uncaught /, '');
if(confirm('Search?\n' + msg)) {
window.open('//stackoverflow.com/search?q=' + encodeURIComponent(msg), '_blank');
window.onerror = null;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment