I have a custom-written CMS that uses CKEditor *(FCKEditor v3) for editing content. I\'m also using the jQuery Validation plugin to check a
Another generic solutions to this would be to run the following whenever you try to submit the form
for ( instance in CKEDITOR.instances ) CKEDITOR.instances[instance].updateElement();
This will force all CKEDITOR instances in the form to update their respective fields