How would I enable/disable the save button of CKEditor using external JS? I don\'t want to remove it completely, just change the appearance between gray and colored icon so that
Here you go:
For 3.6.x:
CKEDITOR.instances.yourEditorInstance.getCommand( 'save' ).disable();
CKEDITOR.instances.yourEditorInstance.getCommand( 'save' ).enable();
For 4.x:
CKEDITOR.instances.yourEditorInstance.commands.save.disable();
CKEDITOR.instances.yourEditorInstance.commands.save.enable();