I'm experiencing the same concern. I have found a work-around - Go into source mode and back out. I believe if you can set the designMode='on' it will solve the problem. Unfortunately, I can't seem track down the correct IFrame when attempting to do so.
When you put a <div id="myid" style="display: none"> the editor is not rendered, specially the iframe and content are not rendered. So after you change the style property to inline or block the iframe is still not rendered.
You might want to try the following:
1) load your page with <div id="myid" style="display: block"> 2) then add a onload="hideeditor()" 3) the javascript you need to add would be something like this document.getElementById("myid").style.display = none;
Re: Loading problem in Firefox - display:none
Re: Loading problem in Firefox - display:none
Re: Loading problem in Firefox - display:none
Where do I set designMode='on'?
Re: Loading problem in Firefox - display:none
When you put a <div id="myid" style="display: none"> the editor is not rendered, specially the iframe and content are not rendered. So after you change the style property to inline or block the iframe is still not rendered.
You might want to try the following:
1) load your page with <div id="myid" style="display: block">
2) then add a onload="hideeditor()"
3) the javascript you need to add would be something like this
document.getElementById("myid").style.display = none;