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?
