how to make a cell of table hyperlink
href, html, hyperlink
Solution
Try this:
HTML:
<table width="200" border="1" class="table">
<tr>
<td><a href="#"> </a></td>
<td> </td>
<td> </td>
</tr>
</table>
CSS:
.table a
{
display:block;
text-decoration:none;
}
I hope it will work fine.
Problem
How can entire table cell be hyperlinked in html without javascript or jquery? I tried to put href in td tag itself but its not working at least in chrome 18 ``` <td href='http://www.m-w.com/dictionary/' style="cursor:pointer"> ```