I need to add an event listener for keypress after the CKEditor is loaded. The code is something like:
CKEDITOR.instances.editor1.document.on(\'key\', fu
CKEDITOR.instances.editor1.on('change', function () { //Do something here.});
This code registers any change event including copy-paste.