-
Help Please
Need to put that :
Code:
<A HREF="javascript:popUp('/radio/index.php') ">Open the Popup Window</A>
Of the link of the image (this is the normal link) :
Code:
<a href="/radio/index.php" target="content"><img name="index_r4_c12" src="/images/index_r4_c12.png" width="100" height="28" border="0" alt=""></a></td>
I want it so when they click on the nav image, it opens up in a pop up.
Thanks.
-
Code:
<A HREF="javascript:popUp('/radio/index.php') ">
<img name="index_r4_c12" src="/images/index_r4_c12.png" width="100" height="28" border="0" alt="">
</a>
-
-
Im worryed you actaly had to ask that one considering a link with an image in it is compleaty identical to the link you already had..
Anyway why bother with the link at all? just attach it to the onclick handler in the image
<img name="index_r4_c12" src="/images/index_r4_c12.png" width="100" height="28" border="0" alt="" onClick="popUp('/radio/index.php')">