Forum Moderators: open
I know it's the script that causes the problem since the site will load fine in firefox if I desable javascripting.
Here is the code I have in <head>:
<script language="javascript" type="text/javascript">
image1 = new Image();
image1.src = "images/1.jpg";
image2 = new Image();
image2.src = "images/2.jpg";
image3 = new Image();
image3.src = "images/3.jpg";
</script>
I use the script like this:
<a href="index.html" onmouseover="image1.src='images/1.jpg';" onmouseout="image1.src='images/1_normal.jpg';"> <img name="image1" src="images/top_support_sh.jpg" width="30" height="29" border="0" alt=""></a>
Can anyone help me?