Hello to all
Just started using ckeditor and trying to integrate it into an existing web application. I was thinking it would be rather simple but I am having a really weird issue. In one of my pages I have the following piece of code:
in my container page I include the
Every time I try to run the page IE gives me an error which points me to ckeditor.js
line 101
char 513
object doesn't support this property or method
Obviously if a comment out the
Any help is greatly appreciated
Many thanks,
Max
Just started using ckeditor and trying to integrate it into an existing web application. I was thinking it would be rather simple but I am having a really weird issue. In one of my pages I have the following piece of code:
<textarea name="mytext" style="{width:100%; height:240px;}"><%=form.getValue("mytext")%></textarea> <script type="text/javascript"> CKEDITOR.replace( 'mytext' ); </script>
in my container page I include the
<script language="JavaScript" type="text/javascript" src="../ckeditor/ckeditor.js"></script>
Every time I try to run the page IE gives me an error which points me to ckeditor.js
line 101
char 513
object doesn't support this property or method
Obviously if a comment out the
CKEDITOR.replacethen the errors goes away. I also tried to simplify the textarea but still the same problems
<textarea name="mytext></textarea>
Any help is greatly appreciated
Many thanks,
Max