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.
Adding a position:relative;
to the container solves the issue.
See this working Fiddle Example!
#ParentDIV {
position: relative;
}