I am using jquery drag and drop plugin, I want to hide replica of drag element while dragging and once drag element is dropped on drop container it should be re-draggable.
My code is :
$(".dragButton").draggable({
helper: 'clone'
});
$(".dropBox").droppable({
activeClass: "ui-state-hover"
});
Please help me.