Is it possible to turn an entire table cell into a link?
Announcement
Collapse
No announcement yet.
td:src? hmmm
Collapse
X
-
Tags: None
-
Hi BroChris, try this (example):
<html>
<head>
<title>Linking a table cell example</title>
</head>
<body>
<p>
This page is loaded into the frame named other.
</p>
<table>
<tr>
<td onClick="document.location='http://www.codingforum.net/'">
Cell contents, <b>click here</b>.
</td>
</tr>
</table>
</body>
</html>
Is this what you are trying to do? Good luck.
boxer_1
CodingForum Moderator
"How did a fool and his money get together in the first place?"
-
-
Comment