JSFiddle - React, Tailwind, and code Playground
HTML
<div class="box"></div>
<p>Using jQuery 1.5, a draggable element with the `helper: 'clone'` option can be dragged only once. This was not the case with jQuery 1.4.4. Is this intentional?</p>
CSS
p {
color: #555;
font-family: sans-serif;
margin: 12px 0;
}
.box {
background: #333;
height: 36px;
width: 36px;
}
JavaScript
$('.box').draggable({helper: 'clone'});