I have two lists #sortable1 and #sortable 2 which are connected sortables, as shown in this example.
#sortable1
#sortable 2
You can drag and drop list items from
Try this example
$('#list1').sortable({ connectWith: 'ul' }); $('#list2').sortable({ connectWith: 'ul', receive: function(ev, ui) { if(ui.item.hasClass("number")) ui.sender.sortable("cancel"); } });