jQuery Sortable and Droppable-open source projects RubaXa/Sortable

Steven Hunt

If you can allow your other droppable areas to be sortable as well, you can use the connectWith option with a common selector:




your jQuery code would then be:

$('.droppable-area').sortable({ connectWith: '.droppable-area' });

This solution worked beautifully for me anyways.