JSFiddle - React, Tailwind, and code Playground
by bakhshi
HTML
<div class="clickable"></div>
CSS
.clickable{
width:500px;
height:500px;
background-color:blue;
}
JavaScript
$(function(){
$('.clickable').click(function(e){
alert(e.type);
})
})