JSFiddle - React, Tailwind, and code Playground

HTML

<div>
    <div style="width:30px;height:30px;background-color:red;">
        <div style="width:15px;height:15px;background-color:yellow;">
    
    </div>
    </div>
</div>

JavaScript

$("div").delegate("","click", function(e){
    e.stopPropagation();
   alert('test');
});