Hi, when we have an element and we are resizing it, then it gets position absolute (Resizable adds it). Is it possible the element not to get absolute position but relative?
The ui-resizable class adds a position of relative to the elements. When you use resizable and draggable in concert, when you start to resize, it will create an absolute positioning, which usually results in elements collapsing on each other. I overcame this by forcing the element to be relative in the resizable start event and then removing the positioning in the stop event. Hope that helps.