I am struggling to achieve my desired behaviour with a div marked as contentEditable. I wish to allow the user to move an img around withi
div
contentEditable
img
In some browsers (notably Firefox but not IE), you can disable resize handles using document.execCommand() with the enableObjectResizing command:
document.execCommand()
enableObjectResizing
document.execCommand("enableObjectResizing", null, false);
You could implement a draggable effect using JQuery ui on you img.