JSFiddle - React, Tailwind, and code Playground
HTML
<input type="text">
CSS
body {
height: 300px; /* For visual help */
}
html.dragging-something * {
cursor: -moz-grabbing !important;
cursor: -webkit-grabbing !important;
cursor: default;
}
JavaScript
$(function() {
$('html').addClass('dragging-something');
});