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
you can give an tag the visual behavior of a table cell:
HTML:
Cell 1
Cell 2
CSS:
tr > a {
display: table-cell;
}