Hi,
I build my editor with the CKEditor builder at the official site.
This is how i implemented CKEditor:
[HEAD]
<script type="text/javascript" src="/ckeditor/ckeditor.js"></script>
[/HEAD]
[BODY]
<form action='index.php' method='post'>
<textarea class='ckeditor' name='a'></textarea>
<textarea class='ckeditor' name='b'></textarea>
<input type='submit' name='submit'>
</form>
[/BODY]
And the Save button is active i can press it but nothing happens, if i use the original submit button it works.
What did i do wrong?
Any help is greatly appriciated.
Have you checked this FAQ?
Have you checked this FAQ?
Customer and Community Manager, CKSource
Follow us on: Facebook, Twitter, LinkedIn
If you think you found a bug in CKEditor, read this!
You have to implement your
You have to implement your own save handler (set "on: save" function when creating the editor) and save the correct editor version's content.