JSFiddle - React, Tailwind, and code Playground
by luckylooke
HTML
<div id="makeMeDraggable"><button>Drag me!</button></div>
JavaScript
$( init );
function init() {
$('#makeMeDraggable').draggable({cancel:false});
}
by luckylooke
<div id="makeMeDraggable"><button>Drag me!</button></div>
$( init );
function init() {
$('#makeMeDraggable').draggable({cancel:false});
}