JSFiddle - React, Tailwind, and code Playground

by Dineshkani

HTML

<div id="event">Hello World</div>

JavaScript

$("#event").bind("click",function(){
    alert("Event Attached");
});