JSFiddle - React, Tailwind, and code Playground
HTML
<div></div>
CSS
div {
background:red;
height:100px;
width:150px;
}
JavaScript
$('div').click(
function(){
$(this).toggle(function(){
this.style.background=blue;
});
}
//function(){
// this.style.background = "orange";
//}
);