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
how about:
$('#ClickableRow').click(function () { window.location = $('a:first', this).attr('href'); });