Hi,
When a JavaScript error occurs, the WebView's ConsoleMessage will be raised:
http://www.essentialobjects.com/doc/eo.webbrowser.webview.consolemessage.aspxYou can ignore it completely. However this does not "supress" the error on the JavaScript side. So for example, if your JavaScript has a try catch block and the code inside the try block raises an error, then the catch block will catch it no matter what --- in another word, there is no way for you to alter the behavior of the JavaScript code engine. Your only choice is to ignore the error notification or not.
Thanks!