Reputation: 1497
I am using jQuery UI sortable plugin with connectWith
option...
How can I restrict the Drag n Drop for one perticular box out of many boxes?
For Eg: A box with Disabled background (.nodrop
)...
Upvotes: 1
Views: 2378
Reputation: 147
see my code.
https://jsfiddle.net/deadmask92/bnpzaobL/2/
I added:
.destination2 ul
$(".nodrop ul").sortable( "option", "disabled" );
Upvotes: 4