JSFiddle - React, Tailwind, and code Playground

HTML

<div>
      <h1>headding</h1>
    </div>
    <a>link</a>

JavaScript

$("*").click(function(e){
   e.preventDefault();
   e.stopPropagation();
   alert($(this)[0].tagName);
});