Search code examples
jqueryjquery-uijquery-ui-resizable

Jquery UI resizable image forcing other image to move also in div


http://jsfiddle.net/maximus392/gcQmM/7/

My problem is that the resizable image is making the other image to move also in the div. I want to prevent the movement of other contents on the div canvas when i resize the image.

Pls suggest.


Solution

  • Make your images positioned absolutely:

    img.item { 
        position:absolute;
    }
    

    DEMO