Can you provide an example on how to setup CKEditor to save via AJAX using the Save button in the CKEditor toolbar?
I\'m interested in creating a CKEditor AJAX save
You can use the beforeCommandExec event & cancel() method:
This doesn't work in CKEditor versions 4.0, 4.1, 4.2, however it works again since version 4.3.
Since CKEditor version 4.2 you can use the save event with the cancel() method:
CKEDITOR.instances[id].on('save', function (event) {
event.cancel();
$(form).submit();
});