JSFiddle - React, Tailwind, and code Playground

HTML

<div>Hello</div><div>Hello</div>
<div>Hello</div><span>Hello</span>

JavaScript

$("div").click(function () {
   console.log("hello"); 
    
});

$("div").each(function () {
    if($(this).data("events") !== 'undefined' && $(this).data("events").click) {
        $(this).css({"cursor": "pointer", "border": "1px solid red"});
    }
});