Here is my draggable and droppable implementation: http://jsfiddle.net/A26ww/
I have groups of playlists and I need to be able to drag a playlist from one group to another. I can do that however I would like to nicely position / align the dropped playlist. Right now it just stays in an awkward position after dropping.
Here is the problem:
I would like the dropped divto align nicely with other divs in the droppable container.
My code:
$(function() {
$(".draggable").draggable({
revert: "invalid"
});
$(".droppable").droppable({
drop: function(event, ui) {
// TODO HELP ME
}
});
});