JSFiddle - React, Tailwind, and code Playground
by halirgb
HTML
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css">
<div class="container">
<div class="ui-widget-content draggable">
<p>Drag me to my target</p>
</div>
<div class="ui-widget-content draggable">
<p>Drag me to my target</p>
</div>
<div class="ui-widget-content draggable">
<p>Drag me to my target</p>
</div>
<div class="ui-widget-content draggable">
<p>Drag me to my target</p>
</div>
<div class="ui-widget-content draggable">
<p>Drag me to my target</p>
</div>
<div class="ui-widget-content draggable">
<p>Drag me to my target</p>
</div>
</div>
<div id="droppable" class="ui-widget-header">
<p>Drop here</p>
</div>
CSS
.draggable {
width: 100px;
height: 100px;
padding: 0.5em;
margin: 10px 10px 10px 0;
float:left;
}
#droppable { width: 150px; height: 150px; padding: 0.5em; float: left; margin: 10px; }
.container{
width:500px;
height:200px;
background-color:red;
overflow:auto;
}
JavaScript
$(function() {
$( ".draggable" ).draggable({
'helper':'clone'
});
$( "#droppable" ).droppable({
drop: function( event, ui ) {
$( this )
.addClass( "ui-state-highlight" )
.find( "p" )
.html( "Dropped!" );
}
});
});