JSFiddle - React, Tailwind, and code Playground
by mark47
HTML
<Br />
<a id="chhese" href="">Foo</a>
<br /><Br />
<div id="gaga">lol ha</div>
JavaScript
$(document).ready(function(){
$("#chhese").on("click", function(){
alert('cheese');
return false;
});
$("#gaga").on("click", function(){
alert('fun');
});
});