I have designed a simple site and it displays properly in all browsers, except Lotus Notes, which gives this error:
An error has occured in the script on this page.
Line: 92
Expected: ')'
- An error has occured in the script on this page.
- Line: 92
- Expected: ')'
I have made modifications to this line, so character is now irrelevant, and I don't have Lotus Notes -- to view this error -- but I'm assuming it has something to do with the preload images function.
Here's the line referenced in the HTML:
In the <head>
<script type="text/JavaScript">
<!--
function MM_preloadImages() { //v3.0
var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}
//-->
</script>
- <script type="text/JavaScript">
- <!--
- function MM_preloadImages() { //v3.0
- var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
- var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
- if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
- }
- //-->
- </script>
In the body tag (line 92):
<body bgcolor="#cccccc" onload="MM_preloadImages('images/slideb.jpg','images/slidec.jpg','images/slided.jpg','images/slidee.jpg','images/slidef.jpg','images/slideg.jpg',images/slideh.jpg',images/slidei.jpg',images/slidej.jpg','images/slide1.jpg')">
Thanks![/code]