I created the following html:
<table>
<tr>
<td onclick="window.location.href = 'Add.html'">
1
<div onclick="window.location.href = 'Update.html'">
Update me
</div>
</td>
</tr>
</table>
When I click td, it redirect Add.html
. It is OK. But when I click div, it also redirect to Add.html
page. I would like to redirect to Update.html
page.