JSFiddle - React, Tailwind, and code Playground

HTML

<div id="parent">I'm the parent<div id="child">I'm the child</div></div>

JavaScript

$(function() {
		document.addEventListener('click', function () {
    	alert('ALOU');
    });
    $("div").click(function(e) {
        e.stopPropagation();
        alert($(this).attr('id') + " was clicked!");
    });
});