How can I suppress all JavaScript runtime error popups, from the programmers side?
How can I suppress all JavaScript runtime error popups, from the programmers side?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
To suppress all JavaScript errors there seems to be a
window.onerrorevent.If it is replaced as early as possible(e.g. right after the head) by a function which returns true – there will be no error popups, which is quite useful after debugging is done.
Error Logging is possible too, as explained here