JSFiddle - React, Tailwind, and code Playground

by evan

HTML

<table>
    <tr>
        <td>
            <p>text</p>
        </td>
    </tr>
</table>

JavaScript

$(function(){

    //run var show on click
    $('td p').click(function(event){
        alert('clicked the p');
        event.stopPropagation();//stop bubbling
    });//end function
    
    $('td').click(function () {
        alert('clicked the td');
    });
    
});