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
Yes, there is the very handy change even that you can listen to. Documentation here: http://docs.ckeditor.com/#!/api/CKEDITOR.editor-event-change
change
Use it for example like so (change editor1 to your editor instance):
CKEDITOR.instances.editor1.on('change', function() { console.log("TEST"); });