Link_entire_table Jan 14th, 2017 1:44 am ref http://stackoverflow.com/questions/4904938/link-entire-table-row 1 2 3 4 5 6 7 8 9 10 11 12 13 <script> $('tr').click( function() { window.location = $(this).find('a').attr('href'); }).hover( function() { $(this).toggleClass('hover'); }); </script> <style> tr.hover { cursor: pointer; /* whatever other hover styles you want */ } </style>