To be compatible with multiple browsers and avoid behavior, I would recommend using all jQueryUI drag and drop callbacks .
I read a few days ago that the latest version of Chrome has some very complex problems with native events that drag HTML5.
For example, I just checked the source code of your web page and you use $('.drag-handle').on('drag', function(){...}); => You must use drag Callback.
I would also recommend not using window as a scrollable container in your case. You must create a div to wrap the entire contents of the tables and use it as a scroll container. I have already done this implementation in the past and it works.
Remember to set the wrapper identifier in the containment option, delaying the creation of the widget for the dragged file.
If it always does not work, you can also try to overwrite the auxiliary position in the drag callback:
//Save the mouse position in global variables $(document).mousemove(function(e){ window.mouseXPos = e.pageX; window.mouseYPos = e.pageY; }); $('[id^="drag-"]').each(function() { $(this).draggable({ opacity: 0.7, cursorAt: { top: 15, left: 50 }, scroll: true, stop: function(){}, drag : function(e,ui){ //Force the helper position ui.position.left = window.mouseXPos - $(this).draggable('option','cursorAt').left; ui.position.top = window.mouseYPos- $(this).draggable('option','cursorAt').top; }); });
source share