JSFiddle - React, Tailwind, and code Playground
by InviS
HTML
<div class='one'></div>
CSS
.one{width: 100px; height: 100px; background-color: grey;}
JavaScript
$('.one').bind('click',function(){
alert(123);
});
by InviS
<div class='one'></div>
.one{width: 100px; height: 100px; background-color: grey;}
$('.one').bind('click',function(){
alert(123);
});