You can simply use the jQuery UI connectWith
in the nestedSortable
plugin, since the latter is just the default jQuery UI sortable extension.
Demo: http://jsfiddle.net/jhogervorst/Ge7eK/9/
JavaScript Code:
$('ol.sortable').nestedSortable({ connectWith: '.sortable' });β
source share