Reputation: 4517
How can I keep the original and the clone on a successful drag?
$('.definition').draggable({'revert':'invalid', 'helper':'clone'});
Upvotes: 0
Views: 3925
$(this).append($(ui.draggable).clone());
Upvotes: 1