I have a table that has 3 rows.
<a href="www.google.com">
<table style="width:100%">
<tr>
<td>Jill</td>
<td>Smith</td>
<td>50</td>
</tr>
<tr>
<td>Eve</td>
<td>Jackson</td>
<td>94</td>
</tr>
<tr>
<td>Non Clickable</td>
</tr>
</table>
</a>
I want to make the 3rd row non clickable using HTML. Is it possible?
I do not wish to apply anchor tag inside each individual <td>.
Thanks in advance.
atag ?