0

I have 9 DIVs that i apply draggable to all of them. now i want to make them all move in the same pattern when one of them is dragged (as if i'm dragging all of them)

    $(".draggable").draggable({
    drag: function(event,ui){

    //i don't know what to write here, as i don't know what event and ui are.
// an .each will solve the problem if i get to know what these 2 arguments are

    }

    });
Ashkan Mobayen Khiabani
  • 33,575
  • 33
  • 102
  • 171

1 Answers1

1

if you want to drag multi divs but not all the container you can have a look here.

Community
  • 1
  • 1
Sagiv Ofek
  • 25,190
  • 8
  • 60
  • 55