Amir hossein Karimi
Amir hossein Karimi

Reputation: 127

Disable resize for image in contenteditable div

I want to make a simple editor for my website.

<div contenteditable="true">edfedasd</div>

its work, But i want disable resize for image in this div.

<div contenteditable="true">edfed<img src="/sm/1.gif">asd</div>

I test onmousedown,onmouseup,onselect,onfocus events But i can not do this!!!

Please help me!

Upvotes: 0

Views: 2436

Answers (2)

Amir hossein Karimi
Amir hossein Karimi

Reputation: 127

I found Answer! I force image width and height by css.(min-max width-height) Its Work! Image not resize, But image width and height attribute will change! Not problem! We can remove attributes by JavaScript.

Upvotes: 1

Hanish Bansal
Hanish Bansal

Reputation: 21

Set contenteditable="false" on the image

Upvotes: 0

Related Questions