I have a table row that has background color on hover. When user clicks within the background color area, it should grab the link of the anchor tag inside the row and take t
you need to also remove space between tr and #ClickableRow other wise it will take as children element.
tr
#ClickableRow
$('tr#ClickableRow').click(function () { window.location = $(this).find('a').attr("href"); });