Click to See Complete Forum and Search --> : Hyperlink help


Rick_Garrison
07-28-2003, 09:14 AM
I currently have a table which is going to be used to link to my forums. However, I want to be able to click on the hyperlink and open a new page, I tried using some other code, but it didn't seem to work (the new window and my old page would load the forums)

Please simply alter my coding:

<table border="1" borderColorDark="#000000" borderColorLight="#444444" cellSpacing="0" width="132" height="27">
<tr>
<td bgcolor="#444444" style="color: #FFFFFF" onMouseOver="style.color='#FFFFFF'; style.backgroundColor='#992106';" onMouseOut="style.color='#FFFFFF'; style.backgroundColor='#444444';" onClick="window.location.href='site.html'" height="12" width="121"><a href="site.html"><font face="Verdana, Arial, Comic Sans MS" color="#CCCCCC" size="2">Latest
News</font></a></td>
</tr>
</table>


Any help would be greatly appreciated! :)

requestcode
07-28-2003, 10:20 AM
Have you tried:
"><a href="site.html" target="_new">

You will need to remove the onclick event also.

Rick_Garrison
07-29-2003, 09:42 AM
If I remove the onclick, then clicking on the cell itself won't go to the link...

PeOfEo
07-29-2003, 10:52 AM
I am just curious this probably wont work but I just want to see if it does lol, put a <a href="httpyoursite.com"> The table here </a> type of deal lol, then delete the link inside of the cell. It will probably not work but I am just curious to see if it will.

Rick_Garrison
07-29-2003, 01:10 PM
Well, I already know how to make a table into a hyperlink- anyways, I guess I just have the link not go to another page- I'll just have it load on the same page- it will be better anyhow. Thanks anyways! :)

PeOfEo
07-29-2003, 03:46 PM
This means I have to test my idea on my own time ahhhhh. I was just curious if it was possible.