Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

We have to add a basic HTML editor to our product. As we only support IE at present (most customers are still on IE 6), I have been told to use the Internet Explorer built-in XHTML editing capabilities – e.g. <div contentEditable="true"> as explained at "Editing a Web Page" .

Apart from not working in other browsers. (The management does not consider it being a problem. Our customers will put up with our software only working with IE. We have never lost any money by our software only working in IE; most customers will only let their staff use IE6 at present anyway)

What other problem are we likely to get with contentEditable?


Update

The HTML editor I wrote with “contentEditable” proved to very hard to get reliable, with many problems. If I had to do this again, I would push very hard to one of the many open source solutions (e.g. TinyMCE) or buy in a supported HTML editor.

No doubt that a very skilled jscript programmer can get “contentEditable” to work well given enough time. It just that all the examples on the web looks so simple, until you test common operations like doing a cut/paste from word and trying to edit the resulting HTML. (just the sort of things a customer will do)

(Just search for “contentEditable” on stackoverflow to get some ideal of the problems other people have had)

share|improve this question
4  
+1 for telling people how problematic contenteditable can be. – Nico Burns Aug 23 '11 at 21:30

6 Answers

up vote 10 down vote accepted

The contentEditable property works in Safari, Firefox 3, and Opera 9.

Since manipulation will undoubtably be through selections, your biggest problem will be getting the selection/ranges working across browsers (see here).

There are also numerous little bugs across browsers which may or may not bite you. These include incompatible case-sensitivity, incompatible methods of turning it off again (removeAttribute vs. setting to false).

Despite these flaws, I find it works rather well.

share|improve this answer

HTML 5 include the contenteditable attribute, so it looks like it will be in IE for a long time to come.

Just got a email from someone on the IE team

While it's basically impossible to comment on the future with a high degree of confidence, it's fair to say that I'm not aware of any plans to remove contentEditable, and if it were removed, it would break a LOT of sites.

share|improve this answer
1  
So you let IE Devs stay alive? – EaterOfCorpses Sep 21 '12 at 9:31
caniuse.com/contenteditable already in IE since 5.5th version – dmi3y Jan 31 at 17:23
contenteditable seems widely supported... however, events on that contenteditable seem to be widely inconsistent (ie)... – Cory Mawhorter May 11 at 20:48

How about using some open-source solution that works in all major browsers?

TinyMCE

There are other projects as well, but that's what I'd use.

share|improve this answer
Thanks, We have considered TinyMCE however it’s licence would need to be considered by management and there may also be legal costs on getting the licence checked out. So I have to use contentEditable="true" unless I can find a good reason for not using it. – Ian Ringrose Jan 29 '09 at 15:17

A quick google search produced a blog post on some (albeit minor) issues of contentEditable.

share|improve this answer

contentEditable works under Firefox 3. I don't know of any problems with contentEditable.

share|improve this answer

I would just be sure to check what content you get back as inserting XSS attacks are quite easy in IE if there is no validation of the HTML content added.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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