i am trying to use fckeditor, it displays the contents and i am able to edit successfully
when i click save, the contents gets lost. and the form doesnt gets submitted even.
and sometimes i get the error that IE has crashed.
has anyone experienced this.
are there any user end settings that are required for the internet explorer.
when i click save, the contents gets lost. and the form doesnt gets submitted even.
and sometimes i get the error that IE has crashed.
has anyone experienced this.
are there any user end settings that are required for the internet explorer.
Re: on save the contents are lost
Re: on save the contents are lost
I have the same problem. Here is my code. I hope someone can help.
<html>
<head>
<title>FCKeditor - Sample</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="robots" content="noindex, nofollow">
<script type="text/javascript" src="fckeditor/fckeditor.js"></script>
</head>
<form>
<script type="text/javascript">
var oFCKeditor = new FCKeditor( 'MyTextarea' ) ;
oFCKeditor.BasePath = "fckeditor/";
oFCKeditor.Create();
</script>
</form>
<body>
</body>
</html>