JSFiddle - React, Tailwind, and code Playground

HTML

<div id="element">Click and wait</div>

CSS

.wait {cursor:wait}

JavaScript

$("#element").click(function(){ 
    $(this).addClass("wait");
});