Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
What do you want to do with an error once you catch it? Do you just need to log it so you can create the missing function, or are you looking to stop exceptions from breaking your code? – Dan Herbert Jun 4 '09 at 17:00
1  
I would like to get the name of the missing function called and based on presence of some string call my own function. Any call to a function with the string 'close' would call my close() for example. I would also like to trap the error at that point. – Bob Jun 4 '09 at 17:06

3 Answers

up vote 34 down vote accepted

Does this help you:

<script type="text/javascript">
window.onerror = function() {
    alert("Error caught");
};

xxx();
</script>

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

share|improve this answer
2  
With the addition of msg, file_loc, line_no params this should do it for me. Thanks! – Bob Jun 4 '09 at 17:16
1  
I have just released code to help log JavaScript errors by sending error information to the server - thecodepage.com/post/JavaScript-Error-Notifications.aspx – Gabriel McAdams Feb 2 '10 at 19:26

How to Catch Unhandled Javascript Errors

Assign the window.onerror event to an event handler like:

<script type="text/javascript">
window.onerror = function(msg, url, line) {
   // You can view the information in an alert to see things working
   // like so:
   alert("Error: " + msg + "\nurl: " + url + "\nline #: " + line);

   // TODO: Report this error via ajax so you can keep track
   //       of what pages have JS issues

   var suppressErrorAlert = true;
   // If you return true, then error alerts (like in older versions of 
   // Internet Explorer) will be suppressed.
   return suppressErrorAlert;
};
</script>

As commented in the code, if the return value of window.onerror is true then the browser should suppress showing an alert dialog.

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.

uncaught exceptions

  • throw "some messages"
  • call_something_undefined();
  • cross_origin_iframe.contentWindow.document;, a security exception

compile error

  • <script>{</script>
  • <script>for(;)</script>
  • <script>"oops</script>
  • setTimeout("{", 10);, it will attempt to compile the first argument as a script

Browsers supporting window.onerror

  • Chrome 13+
  • Firefox 6.0+
  • Internet Explorer 5.5+
  • Opera 11.60+
  • Safari 5.1+

References:

share|improve this answer
2  
dude great answer, thank you! – andy Jun 12 '12 at 5:18
2  
This answer should be accepted. – uthark Mar 19 at 16:40
worth mentionning firefox doesn't give back the error message when throw is made manually. stackoverflow.com/questions/15036165/… – Sebas Mar 30 at 2:09

sophisticated error handling

If 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:

var appIsHandlingError = false;

window.onerror = function() {
    if (!appIsHandlingError) {
        appIsHandlingError = true;
        handleError();
    }
};

function handleError() {
    // graceful error handling
    // if successful: appIsHandlingError = false;
}

Otherwise you could find yourself in an infinite loop.

share|improve this answer
6  
Or a more fail-safe way would be to use try-catch around the handleError method. – Aidiakapi Apr 26 '12 at 14:49

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.