Hello everybody!
My name is Dave and i am working with the FCKeditor since 2 years now. I really love the other but now since a month or so i have this problem with the editor loading in Firefox. I thought that downloading the latest version might help but still the same problem... Now i am wondering if any of you have the same problem or even better, a solution
When i start the editor inside a div with this code <div style="display:none"> and change the property of the div using javascript to <div style="display:block"> the div appears, with the editor in it but.... the textarea it self seems not activated. I can't type anything in the text area.
Here is an example: http://webism.nl/lab/fck.htm
Hopefuklly someone can help me out here?
Dave
Thu, 08/30/2007 - 15:53
#1
Re: Loading problem in Firefox - display:none
Noboddy? It seems such a stupid problem....
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;