Hello,
I have this bit of JavaScript code that is puzzling me. I am trying to add a mouseover to the image, but it won't allow me to insert a "name" to it. A copy of the image tag is below. What am I doing wrong?
ACTUAL SCRIPT
<script language="javascript">
RandomURL('<img SRC="GwLogoWhite.png" height=200 width=193 BORDER="1"> '," </script>
Thanx.
IMAGE TAG
<img name='LOGO' src="0002HitsWhite.png" width="150" height="100" onmouseover="document.LOGO.src='0002HitsGreen.png'"
onmouseout="document.LOGO.src='0002HitsWhite.png'"
BORDER="0">
I have this bit of JavaScript code that is puzzling me. I am trying to add a mouseover to the image, but it won't allow me to insert a "name" to it. A copy of the image tag is below. What am I doing wrong?
ACTUAL SCRIPT
<script language="javascript">
RandomURL('<img SRC="GwLogoWhite.png" height=200 width=193 BORDER="1"> '," </script>
Thanx.
IMAGE TAG
<img name='LOGO' src="0002HitsWhite.png" width="150" height="100" onmouseover="document.LOGO.src='0002HitsGreen.png'"
onmouseout="document.LOGO.src='0002HitsWhite.png'"
BORDER="0">