0

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.

Tushar Ahirrao
  • 12,669
  • 17
  • 64
  • 96

1 Answers1

1

as your .dragButton has the same class it should still be dragable. otherwise use the callback function to make your dropped element dragable again

ggzone
  • 3,661
  • 8
  • 36
  • 59