If possible, how can we to the event of ckeditor\'s content being changed? For instance, there\'s some text already inserted into the ckeditor\'s content aka textarea when t
Simple jQuery event binding for CKEditor4
$.fn.onDataChange = function (func) { var func = func || function () { }; CKEDITOR.instances[$(this).attr('id')].on('change', function () { func(); }); }