I am trying to build a small app. one column has 5 rectangles. (vertically aligned) I want to drag&drop the rectangle into another area, while keeping the same rectangle in the column, so I could drag&drop it again.
Is this possible?
Thank you
I am trying to build a small app. one column has 5 rectangles. (vertically aligned) I want to drag&drop the rectangle into another area, while keeping the same rectangle in the column, so I could drag&drop it again.
Is this possible?
Thank you
Is this what you are looking for?
Check the link http://jsfiddle.net/tt99ugsf/
$('.square1').draggable({
revert:"valid",
helper:"clone"
});
The trick is to clone the div