CKEditor: HowTo destroy instance on blur?
问题 i have a single html page with mulitple div elements on it. Each time a user clicks on on a div , it is replaced with an CKEditor on the fly: $('.editable').click(function() { editor = CKEDITOR.replace(this); }); Now, if the CKEditor instance loses its focus (blur event), i need to post the content to a separate script via ajax (if something changed) and destroy this instance: $('.editable').click(function() { editor = CKEDITOR.replace(this); editor.on('blur', function(e) { if (e.editor