I had a similar issue where the FCKeditor was removing carriage returns: viewtopic.php?f=6&t=14351
I was able to modify the Javascript code to fix this.
Now the problem is the FCKeditor is removing HTML, HEAD and BODY tags.
So for example if I type this into the Source view:
<html> <head> </head> <body>test </body> <html>
Then go to the WYSIWYG view then back to the Source view, it changes to:
<p>test</p>
I am using the .NET version of the FCKeditor. It does this in both IE8 and FF3.5. I am using the newest version of .NET FCKeditor 2.6.3 and FCKeditor 2.6.4.1. I tested this in a completely new environment that only contains the FCKeditor samples.
All I want is for the FCKeditor to not touch any of the text and leave it as is. Does anyone know how I can do this or how I can prevent the FCKeditor from removing these html tags?
Re: How to prevent FCKeditor from removing HTML, HEAD and BODY?
What i mean is something along those lines (untested, code is just to give you some ideas):
Re: How to prevent FCKeditor from removing HTML, HEAD and BODY?
Re: How to prevent FCKeditor from removing HTML, HEAD and BODY?
That did it. Thanks a lot for your help.
Joe