I\'m creating a day planner using jquery, draggable and droppable.
When a job is dragged from the unassigned column into a hour time slot, the original draggable item i
Rather than replacing the new div, why not disable the draggable?
$(element).draggable('disable');
Then when you want it to be draggable agian, use this
$(element).draggable('enable');