Reputation: 31
When dragging an element can the draggable plugin prevent it from overflowing the other draggable elements? In other words, can it stop dragging the element when it reaches the edge of the other draggable element?
Upvotes: 3
Views: 212
Reputation: 7489
You can contain the dragging within a parent element - if you contain all of the draggables within one element and set that as the containment, they will not be able to be dragged beyond that.
$( ".selector" ).draggable({ containment: 'parent' });
(from http://jqueryui.com/demos/draggable/)
Upvotes: 1