JSFiddle - React, Tailwind, and code Playground

HTML

<div id="box"> Something </div>

CSS

#box {
    width: 100px;
    height: 100px;
    background: #0f0;
}
.disable { background: #f00 !important; }

JavaScript

$("#box").click(function() {
    $(this).toggleClass("disable");
});