Sounds like you got the correct settings. Are you sure these aren't alerts actually in the code.
AnthonyWJones
2009-02-02 12:24:21
Sounds like you got the correct settings. Are you sure these aren't alerts actually in the code.
If you want to turn them off in code, you can do this:
window.onerror = null;
It seems like you don't have "enough storage". Maybe you can try upping your cache size. That's just a shot in the dark, but worth a try...
If you don't want to hide all other errors wrap the call to the code in a try/catch.
try {
callDodgyCode();
}
catch(e) {
// Eat error
}