I want to create an anchor link that applies to the whole row of a table. That is, wherever the visitor clicks anywhere in that row, the link will be taken.
Is this possible? I've tried the html below and it doesn't seem to work. Have I made a mistake, or is what I want to do out of scope for html?
--Gil
<html>
<head>
</head>
<body>
<table>
<a href="http://MacBear.com/Page1">
<tr>
<td>row one cell one</td>
<td>row one cell two</td>
</tr>
</a>
<a href="http://MacBear.com/Page2">
<tr>
<td>row two cell one</td>
<td>row two cell two</td>
</tr>
</a>
</table>
</body>
</html>


