Posted on: 2/27/2014 12:35:31 PM | Views : 524

Here my jquery code
<script type="text/javascript"> $(function () { $("#dragdiv li").draggable({ appendTo: "body", helper: "clone", cursor: "move", revert: "invalid" }); initDroppable($("#dropdiv")); function initDroppable($elements) { $elements.droppable({ activeClass: "ui-state-default", hoverClass: "ui-drop-hover", accept: ":not(.ui-sortable-helper)", over: function (event, ui) { var $this = $(this); }, drop: function (event, ui) { var $this = $(this); $(" ...

Go to the complete details ...