rjclarkson
12-02-2003, 02:24 PM
Browers seem to be adding a basic error handling script to my web pages :
<script language="JavaScript">
<!--
function SymError()
{
return true;
}
window.onerror = SymError;
//-->
</script>
and on one occassion the browser does not load a page properly and misses off a whole script section, rendering parts of the page useless.
The pages work perfectly well on a computer harddrive, they fail when on the web.
I would like to know why and how to get a browser to load a page I want it to.
<script language="JavaScript">
<!--
function SymError()
{
return true;
}
window.onerror = SymError;
//-->
</script>
and on one occassion the browser does not load a page properly and misses off a whole script section, rendering parts of the page useless.
The pages work perfectly well on a computer harddrive, they fail when on the web.
I would like to know why and how to get a browser to load a page I want it to.