Link Selector Images

liunx

Guest
Another question!<br />
This one is likely a javascript.<br />
I want to have a page where two or more links will appear, one over another, and every time you cursor over a link, a small image (a hand pointing) will appear beside it, to the left.<br />
Is this possible?<!--content--><html><br />
<head><br />
<title> image for link</title><br />
</head><br />
<body><br />
<table border="0"><br />
<tr><br />
<td width="60px" height="60" align="center" valign="middle"><br />
<img name="image1" src=http://www.htmlforums.com/archive/index.php/"blank.gif" height="60" width="60" border="0><br />
</td><td> <a href=http://www.htmlforums.com/archive/index.php/"blah.com" onmouseover="document.images['image1'].src='http://www.htmlforums.com/archive/index.php/hand.gif'"<br />
onmouseout="document.images['image1'].src='http://www.htmlforums.com/archive/index.php/blank.gif'"><br />
click for link 1</a><br />
</td>>/tr><br />
<tr><br />
<td width="60px" height="60" align="center" valign="middle"><br />
<img name="image2" src=http://www.htmlforums.com/archive/index.php/"blank.gif" height="60" width="60" border="0><br />
</td><td> <a href=http://www.htmlforums.com/archive/index.php/"blah.com" onmouseover="document.images['image2'].src='http://www.htmlforums.com/archive/index.php/hand.gif'"<br />
onmouseout="document.images['image2'].src='http://www.htmlforums.com/archive/index.php/blank.gif'"><br />
click for link2<br />
</td>>/tr><br />
</table><br />
</body><br />
</html><!--content-->*whew*<br />
<br />
I thought that NO ONE was going to respond to this!<br />
<br />
Thanks!<br />
I mean it!<!--content-->
 
Back
Top