How to make a table cell LINK?

liunx

Guest
I am trying to find code that will make the cell of a table link to the same place the linked text is. Is this possible?<!--content-->well you could do this but not sure how effective it is in other browsers besides IE<br />
<br />
<a href><td>your cell data here</td></a><br />
<br />
but you might have to use onMouseovers for this to work effectivly all the way around.<!--content-->Would this work ?<br />
<br />
<br />
<td><br />
<a name="flowers"></a><br />
Here is some text...<br />
more text...<br />
more text...<br />
<a href=http://www.htmlforums.com/archive/index.php/"#flowers">Go visit flowers</a><br />
<a href=http://www.htmlforums.com/archive/index.php/"#cars">Go visit cars</a><br />
<a href=http://www.htmlforums.com/archive/index.php/"#flowerCars">Go visit flowers AND Cars</a><br />
</td><!--content-->It created a table cell with the text in it. I'm not sure there is a way to do this...<br />
<br />
One person suggested I create a transparent image and make it link.<!--content-->
 
Back
Top