I use CKEditor 4.2.2 without the default toolbar because I want to use my own toolbar.
CKEditor is UndoManager , which has 4 functions that I need: undo(), redo(), undoable(), redoable().
In my html, I:
<textarea id='doc'>
In javascript:
$('
m_Editor = CKEDITOR.instances[textareaId];
I tried using:
m_Editor.undo - undefinedm_Editor.plugins.undo
Here is a CKEditor instance for the current text area in the console:

source
share