I know this happens, and i know why etc, but is there any way i can stop this happening?
for example, i have links that when rolled over, change.
...
...
I've managed to put the first part into CSS, but i'm still greeted with the error
"there is no attribute "name"."
Is there another calling for "name"?
for example, i have links that when rolled over, change.
Code:
image1 = new Image();
image1.src = "link1.gif";
...
...
Code:
<a href="www.home.com" onmouseover="image1.src='link1.gif';" onmouseout="image1.src='link1n.gif';">
<img name="image1" src="link1n.gif" alt="hi"></a>
I've managed to put the first part into CSS, but i'm still greeted with the error
"there is no attribute "name"."
Is there another calling for "name"?
Last edited: