Im trying to make a script to change 3 links with user input, so when a user trys to change LINK1, it will go to all the LINK1 spots, same with LINK2 and LINK3.
Any help would be appreciated
Code:
<table style="background-color: black;" border="0" cellpadding="6" cellspacing="0"> <tbody> <tr> <td colspan="3" valign="top" width="300" height="230"> <center><font color="white" face="trebuchet ms" size="3"><b><i>Imageviewer<br> </i></b></font><img src="LINK1" name="prodimg" id="prodimg" width="285"><br> <br> </center> </td> </tr> <tr> <td> <center><img src="LINK1" onmousedown="document.images['prodimg'].src='LINK1';" width="70"> </center> </td> <td> <center><img src="LINK2" onmousedown="document.images['prodimg'].src='LINK2';" width="70"> </center> </td> <td> <center><img src="LINK3" onmousedown="document.images['prodimg'].src='LINK3';" width="70"> </center> </td> <!--PICS--> </tr> </tbody> </table>
Any help would be appreciated
Comment