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
If you have a lot of ckeditor (version 4) in one page you could use this code:
CKEDITOR.on('instanceCreated', function(event) { var editor = event.editor, element = editor.element; editor.on('change', function() { console.log(element.getId()); }); });