JSFiddle - React, Tailwind, and code Playground
by BoxMan0617
HTML
<input type="text">
CSS
html.dragging-something {
cursor: -moz-grabbing !important;
cursor: -webkit-grabbing !important;
cursor: grabbing !important;
}
JavaScript
$(function() {
$('html').addClass('dragging-something');
});