Search code examples
jqueryjquery-uijquery-resizable

Jquery UI resizable issue expands beyond containment (draggable also used)


The problem i am facing is with the resizability of the div. When i use it with Draggable, it gives the problem and not able to resize it width-wise.

If i use the resizable alone, then it is fine. But i need to make it work with draggable feature.

Pls suggest.

click the jsFiddle link for the demo.


Solution

  • Adding a position:relative; to the container solves the issue.

    See this working Fiddle Example!

    #ParentDIV {
        position: relative;
    }