I would like to catch every undefined function error thrown. Is there a global error handling facility in Javascript? The use case is catching function calls from flash that are not defined.
|
|
Does this help you:
I'm not sure how it handles Flash errors though... Update: it doesn't work in Opera, but I'm hacking Dragonfly right now to see what it gets. Suggestion about hacking Dragonfly came from this question: http://stackoverflow.com/questions/645840/mimic-window-onerror-in-opera-using-javascript |
|||||||||
|
How to Catch Unhandled Javascript ErrorsAssign the
As commented in the code, if the return value of When does the window.onerror Event Fire?In a nutshell, the event is raised when either 1.) there is an uncaught exception or 2.) a compile time error occurs.
Browsers supporting window.onerror
References:
|
|||||||||||
|
sophisticated error handlingIf your error handling is very sophisticated and therefore might throw an error itself, it is useful to add a flag indicating if you are already in "errorHandling-Mode". Like so:
Otherwise you could find yourself in an infinite loop. |
|||||
|