I've been doing some research into this annoying error I get when I try to load pages on different servers into an iframe.
Apparently IE6 has bumped up security to prevent this from happening?
The thing is, it doesn't actually stop the page from loading, but the error prevents my other javascript functions from continuing.
Is there a way to script something to ignore the error?
I tried:
function ClearError() {
history.go()
return true;
}
window.onerror = ClearError;
but this sent my page into an eternal loop, I guess because I have a function called from body onload.??
Any ideas that might help me, and countless others who seem to be having the exact same problem?