showing results for - "jquery add event listener to ckeditor"
Miguel
02 Jun 2018
1CKEDITOR.instances['emailBody'].on('blur', function(e) {
2    if (e.editor.checkDirty()) {
3        var emailValChanged=true; // The action that you would like to call onChange
4    }
5});