Skip to content

Instantly share code, notes, and snippets.

@dotherightthing
Last active September 24, 2021 14:28
Show Gist options
  • Save dotherightthing/cf0966bffc88abfec7af to your computer and use it in GitHub Desktop.
Save dotherightthing/cf0966bffc88abfec7af to your computer and use it in GitHub Desktop.
[Show a console error in an alert box] #javascript
window.onerror = function(message, url, line) {
alert(message + ', ' + url + ', ' + line);
};
@sooraj771989
Copy link

Thank You

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment