I am using CKEditor 4.4.3 and trying to listen to an editor\'s click event:
editor.on(\'click\', function (e) { console.log(\'click event from attachin
Use attach the event handler to the editor's editable. This needs to be done after the editor is ready:
editable
editor.on('instanceReady', function (e) { editor.editable().on('click', function (event) { console.log('clicked'); }); });
Fiddle: http://jsfiddle.net/8fZpz/