In my specific case, here is what I did to fix this:
resizeableObj.resizable({ start: function(event, ui) { resizeableObj.css({ position: "relative !important", top: "0 !important", left: "0 !important" }); }, stop: function(event, ui) { resizeableObj.css({ position: "", top: "", left: "" }); } });
As you can see, in the resize event, set the relative position (using draggable and resizable in agreement, absolute positioning is added) and set the top and left sides to 0 to prevent the βjumpβ that you sometimes see. In a stop event, discard these changes. Works in my case, YMMV.
source share