just add the css property "position as static" to the parent div for which you set the scroll bar.
$("selector").css("position","static");
ex.
$('.bottomSentences').draggable({ cursor: 'move', helper: 'clone', start: function(e, ui) { $(ui.helper).addClass("ui-draggable-helper"); $("#splitSentencesDiv").css("position","static"); } });
here in the former splitSentencesDiv is my Div for which I set the scroll. by default, its position value is relatively set by the col- bootstrap class.
source share