show/hide this revision's text 2 added 728 characters in body

I

Thanks for everyone’s help, anyone thinking of using contentEditable” should read the other answers to my question and then think putting very hard before using contentEditable”.

I have found that if I use an iframe e.g.

<iframe id=EditorIFrame >
</iframe>

And create the

<div div that is editable in the iframe eg

theEditorIFrame = document.getElementById('EditorIFrame');  
theEditorDoc = theEditorIFrame.contentWindow.document;  
theEditorDoc.body.innerHTML = '<body><div contentEditable="true" id="EDITBOX"></div>

inside a iframe may be part of ></div></body>'; theEditorDiv = theEditorDoc.getElementById("EDITBOX") theEditorDiv.focus(); theEditorDoc.execCommand("InsertOrderedList")

It seems to all work for me, at present until I get the answer

What next nasty surprise from contentEditable” and execCommand”

Ps How do I can not understand is why get the problem is not all over googlefirst line of my code to lineup with the rest?

show/hide this revision's text 1

I think putting the

<div contentEditable="true" id="EDITBOX"></div>

inside a iframe may be part of the answer

What I can not understand is why the problem is not all over google