Drag me to my destination
Dropp here
<div id="draggable" class='drg_box'>
<p>Drag me around</p>
</div>
<div id=d1></div>
<script>
$(document).ready(function() {
///////////
$( function() {
$( "#draggable" ).draggable();
});
///////////
})
</script>