Skip to content

Instantly share code, notes, and snippets.

@shoyan
Created January 11, 2013 00:27
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 shoyan/4506983 to your computer and use it in GitHub Desktop.
Save shoyan/4506983 to your computer and use it in GitHub Desktop.
javascriptでエラーが起きたら補足してalertで表示してくれる
window.onerror = function(message, url, linenumber) {
alert("JavaScript error: " + message + " on line " + linenumber + " for " + url);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment