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
Try this:
HTML:
CSS:
.table a { display:block; text-decoration:none; }
I hope it will work fine.