Try putting the a around the td and then apply a display:block CSS element to the td.
That should make the entire area of the td clickable with all buttons as a "normal" link.
An example is probably better:
<table id="row_link">
<tbody>
<tr>
<a href="link1.html"><td style="display: block;">link</td></a>
<td>info 1</td>
</tr>
<tr>
<a href="link2.html"><td style="display: block;">link</td></a>
<td>info 2</td>
</tr>
</tbody>
</table>
A similar approach has worked in the past for me, although it was not exactly for table elements. Untested with tables so try it.
