JSFiddle - React, Tailwind, and code Playground

by geekrose Lee

HTML

<table>
    <tr onclick="trAlert()" bgcolor="#cccccc" width="300" height="300">
        <td>
             <input type="button" onclick="btnAlert()" name="click me" value="I'm a button" id="click me" />
        </td>
    </tr>
</table>

JavaScript

function trAlert()
{
    alert('tr');
}

function btnAlert()
{
    event.stopPropagation();
 alert('btn');   
}