JSFiddle - React, Tailwind, and code Playground
by avall
HTML
<div></div>
CSS
div{
width:50px;
height:50px;
background:#ddd;
}
JavaScript
$( ".selector" ).draggable({
start: function(event, ui) {
alert(event);
},
stop: function(event, ui) {
}
});