After a bit more research and another question, I dealt with this.
In the drop event on the droppable element, you need to clone the helper, since you cannot delete the actual helper that is displayed during drag and drop.
$("#droppable").droppable({ drop: function(event, ui) { var newDiv = $(ui.helper).clone(false) .removeClass('ui-draggable-dragging') .css({position:'absolute', left:0, top:ui.offset.top - 12}); $(this).append(newDiv); } });
Thanks also to Jason Benson .
Alan
source share