JSFiddle - React, Tailwind, and code Playground

by Daniel Redwood

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();
});