JSFiddle - React, Tailwind, and code Playground

by smlombardi

HTML

<div id="loader">Loader Div</div>

CSS

#loader { 
    color: green;
}

.newclass { color: red !important; }

JavaScript

$('div').click(function() {
    $('#loader').toggleClass('newclass', 1000).promise().done(function(){alert("done")});
});