JSFiddle - React, Tailwind, and code Playground
by sendmetamil
HTML
<table>
<tr>
<td><a class="fancybox" href="detail.aspx?CID=67525">LT5C260A436C41</a></td>
<td>more data</td>
</tr>
<tr>
<td><a class="fancybox" href="detail.aspx?CID=17522">LA5C260D436C41</a></td>
<td>more data</td>
</tr>
</table>
JavaScript
$("table tr").bind('click', function(e) {
window.location.href = $(this).find("a.fancybox").attr('href');
});