Javascript Global Error Handling


/ Published in: JavaScript
Save to your folder(s)



Copy this code and paste it in your HTML
  1. function handleError()
  2. {
  3. alert(An error has occurred!');
  4. return true;
  5. }
  6. window.onerror = handleError;

URL: http://hungred.com/2009/03/08/how-to/javascript-tutorial-handling-errors/

Report this snippet


Comments


You need to login to view comments.