We can have a function with return true and use it on window.onerror.Thus when the browser encounters a JavaScript error it returns true and block the error begin displayed.
function blkError() { return true; } window.onerror = blkError; |
We can have a function with return true and use it on window.onerror.Thus when the browser encounters a JavaScript error it returns true and block the error begin displayed.
function blkError() { return true; } window.onerror = blkError; |