I am working on a site that was using FCKEditor. We are migrating to use CKEditor now. I found an example that called the editor with the following code:
<script type="text/javascript" src="/ckeditor/ckeditor.js"></script>
<form method="post" action="cke.cfm">
<p> My Editor:<br />
<textarea name="editor1">#content#</textarea>
<script type="text/javascript"> CKEDITOR.replace( 'editor1' ); </script>
</p>
<p> <input name="x" type="submit" value="Submit" />
</p> </form>
In the example, content is passed to the textarea.
This seem to work for the standard but we wanted to use the full. I then discovered that it doesn't work in FireFox or IE but shows and behaves correctly in Chrome.
Can someone provide me with some examples on how to use with ColdFusion or what may be wrong?
Thank you in advance for your assistance.