Joe_vbulletin3_import28511
New Member
I've multiple, draggable divs inside of a scrollable div. When I drag them into the droppable zone (which is also a scrollable div), the doppable DIV doesn't scroll down. Just the page is moveing.How to say, that just the droppable div should scroll while dragging?Here is my current jquery code for making the divs draggable\[code\]$(".drag_item").draggable({ helper: 'clone', scroll: true, drag: function( event, ui ) { $(this).css('z-index','100'); } });\[/code\]