how to drag and drop multiple divs using jquery ui?any option to accept a array of divs?
A:
$(".divclass").draggable();
Will make anything with the class, "divclass" draggable
Alex
2010-09-20 08:06:22
A:
you make in every div a class for example:
<div id="1st" class="go">
<div id="2nd" class="go">
<div id="3rd" class="go">
then
$('.go').draggable();
klox
2010-09-20 08:15:40
i am able to drag only last element using this method
2010-09-20 11:07:50
have you made the div like my mine?
klox
2010-09-21 02:13:14