You can completely remove the assistant clone, but the helper itself (as in your example) cannot be deleted.
Here jsFiddle demonstrates resetting the cloned helper: http://jsfiddle.net/jKabn/1/
Here is the related code:
$(".product").draggable({ revert: 'invalid', cursorAt: { top: -12, left: -20 }, helper: function(event) { return $('<div class="helper">Helper</div>'); } }); $(".droppable").droppable({ drop: function(event, ui) {
Helper is deleted after the frame is executed in jquery. To save it, you need to remove the draggable specific css and positioning, as well as clone the element. JsFiddle also has a demo for removing the "draggable" element (not that this was especially true for your question, I just added it for myself.)
Hope that helps
Jason benson
source share