I am currently working on implementing a draggable list that I want to contain within a scrollable div.
$( ".draggable" ).draggable();
Here is the fiddle I have created for this: http://jsfiddle.net/YvJhE/660/
However, the issue I am facing is that the draggable elements remain confined within the container. My goal is to allow them to be dragged out of the container while also enabling scrolling within it when there are more elements than can fit in the container.
Can anyone provide guidance on how I can achieve this functionality?