I have a sortable unordered list on the bottom of my page, which works perfect in Firefox. However, in Safari/Chrome the grabbed listitem jumps instantly to the top of the p
For me, the problem came from css overflow on body :
body { overflow-x: hidden; }
Removing this line completely fix the problem.