Hi all, sorry for my bad English.
I use the plugin named ajaxform, when I ajax post the form, I found
the fckeditor's value does not post.
I checked the codes of ajaxform, there are some some codes as follows:
// hook for manipulating the form data before it is extracted;
// convenient for use with rich editors like tinyMCE or FCKEditor
var veto = {};
this.trigger('form-pre-serialize', [this, options, veto]);
if (veto.veto) {
log('ajaxSubmit: submit vetoed via form-pre-serialize
trigger');
return this;
}
I guess it is the way to fix the bug I meet, but, how to use it?
Thank your very much!
Eric.