JSFiddle - React, Tailwind, and code Playground
HTML
<div class="thang">Click Me</div>
CSS
.thang {
width:60px;
height:60px;
padding:10px;
display:block;
background:red;
cursor:pointer;
}
JavaScript
function fadeIt() {
$(this).animate({
opacity:0
}, 400, function(){
// some other goodies will go here
});
}
$('.thang').click(function(){
$(this).fadeIt();
});