On-line Guides

How To Guides






The JavaScript FAQ
Prev Home Next

Suppressing JS Errors

Question: Can I suppress JavaScript error messages?

Answer: Yes. To suppress all JavaScript error messages on your HTML page, you can put the following code fragment in the HEAD section of your page:

<SCRIPT language="JavaScript">
<!--
function silentErrorHandler() {return true;}
window.onerror=silentErrorHandler;
//-->
</SCRIPT>
Or you can use a similar code (without SCRIPT tags) in an included .js file, if you have one. For a working code example, see our error handling demo!

JavaScripter.net. Copyright © 1999-2006, Alexei Kourbatov

The JavaScript FAQ
Prev Home Next


Mirrored with kind permission of Alexei Kourbatov Design by Interspire

AltStyle によって変換されたページ (->オリジナル) /