vote up 2 vote down star
1

How can I prevent the user from being able to resize an image in designMode? (disable the handles when image is clicked)

flag

3 Answers

vote up 1 vote down check

Say you turn contentEditable on like this:

document.body.contentEditable = true;

All you have to do is turn it off for all (or some) images.

var imgs = document.getElementsByTagName("IMG");
for (var i = 0; i < imgs.length; ++i) {
    imgs[i].contentEditable = false;
}
link|flag
Works for contenteditable indeed. Doesn't seem to work for designMode. The solution created a new problem though: when an image gets moved around and released, it will create a copy of the image at caret position in the editable area. Any suggestion? – dEEf Nov 14 '08 at 9:00
I don't know much about either, so what's the difference between contentEditable and designMode? If designMode isn't working, could you just switch to contentEditable? – nickf Nov 14 '08 at 9:07
Found the problem to my previous problem (draggin of image) : mousedown -> event.preventDefault(); Thanks nick, I'm switching to contentEditable... – dEEf Nov 14 '08 at 9:09
Hey dEEF, do you have some sample code to disable the resize handles in Firefox. The above code is not working and I didn't think contentEditable works in Firefox. – Luke Jan 14 at 13:16
vote up 0 vote down

I can't get this working when using designMode in Firefox. I have tried the CSS property, -moz-user-select and that is not working either.

Any ideas how to stop the resize handers on the image. I am trying it with the http://projects.bundleweb.com.ar/jWYSIWYG/ control. When I add an image to the demo in Firefox the resize handlers appear.

Any idea how I could modify this so the resize handlers do not appear in Firefox and IE?

Would it be possible to block the click event for images so the resize handler doesn't appear?

link|flag
vote up 1 vote down

Well, you cannot remove those resize handlers neither in Firefox nor IE... at least I couldn't find a solution.

At the end I managed that in Firefox by editing some configuration files from FF installation folder and we don't want to do that, right?

Anyway, if you want to disable resizing if images (but resize handlers will still be visible) just add some css style like:

img {
    width: auto !important;
    height: auto !important;
}

regards, Mihailo

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.