zmtewo2wit
New Member
I have a Div container element that is set to scroll and it holds some dragable boxes, due to another issue when the box is being dragged I remove the scroll option and set overflow to visible. The issue is that in IE (tested in version 8) when you have scrolled down the page to select a box when the overflow is changed to visible the Div container element scrolls to the top rather than stay in its current position. This messes up the fact that you are suppose to be dragging the box and it appears either off the screen or some distance below the pointer.\[code\] function startedDrag(e) { $('#unplanned').css({ 'overflow-y': 'visible', 'overflow-x': 'visible' }); }\[/code\]I mocked up an example here though IE8 seems to fail to display the jsfiddle site:http://jsfiddle.net/C5ez9/3/any help pleasethanks