Comments on: Window onError Event http://mattsnider.com/languages/javascript/window-onerror-event/ Understanding JavaScript and Frameworks Sun, 07 Sep 2008 04:04:31 +0000 http://wordpress.org/?v=2.1.2 By: Brian Moschel http://mattsnider.com/languages/javascript/window-onerror-event/#comment-8639 Brian Moschel Sun, 30 Mar 2008 14:28:15 +0000 http://mattsnider.com/languages/javascript/window-onerror-event/#comment-8639 JavaScriptMVC's Error plugin overrides the onerror event, using it to send a message to a free email notification service. Its used to let you receive an email whenever someone encounters an error in your web pages. http://javascriptmvc.com/learningcenter/error/index.html The code is open source. JavaScriptMVC’s Error plugin overrides the onerror event, using it to send a message to a free email notification service. Its used to let you receive an email whenever someone encounters an error in your web pages.

http://javascriptmvc.com/learningcenter/error/index.html

The code is open source.

]]>
By: Brian Moschel http://mattsnider.com/languages/javascript/window-onerror-event/#comment-8640 Brian Moschel Sun, 30 Mar 2008 14:30:42 +0000 http://mattsnider.com/languages/javascript/window-onerror-event/#comment-8640 Oh, I forgot to mention that one problem with onerror is that Safari and Opera don't support it. So be careful with putting any crucial application functionality in an onerror handler, it won't work for a percentage of your users. For those browsers you have to rely on try...catch blocks. Oh, I forgot to mention that one problem with onerror is that Safari and Opera don’t support it. So be careful with putting any crucial application functionality in an onerror handler, it won’t work for a percentage of your users. For those browsers you have to rely on try…catch blocks.

]]>
By: Carl S. Yestrau http://mattsnider.com/languages/javascript/window-onerror-event/#comment-18239 Carl S. Yestrau Wed, 09 Jul 2008 00:59:00 +0000 http://mattsnider.com/languages/javascript/window-onerror-event/#comment-18239 If you have to worry about cross-domain related issues related to XHR use the Image object with URL encoded query string parameters. See: http://blogs.splunk.com/carl/2008/01/16/javascript-error-logging-with-splunk/ If you have to worry about cross-domain related issues related to XHR use the Image object with URL encoded query string parameters.

See:
http://blogs.splunk.com/carl/2008/01/16/javascript-error-logging-with-splunk/

]]>