How can I make a jquery sortable available in groups ? (that is means that you can also sort it, interchange in other groups as well)
<div class="wpr">
<ul class="items1">
<li>item</li>
<li>item</li>
<li>item</li>
<li>item</li>
</ul>
<ul class="items2">
<li>item</li>
<li>item</li>
<li>item</li>
<li>item</li>
</ul>
js :
$(document).ready(function(){
Init();
});
function Init(){
$( ".items1" ).sortable();
}
I just want to add, that I also have a draggable and droppable in this project. , which means that the droppable is also a sortable in those groups..