(Possible duplicate: CKEditor - No toolbars)
I\'d like to create a CKEditor instance without a toolbar. I tried defining an empty toolbar to use in the instance\'s c
In CKEditor 4.9.2:
When you instanciate the editor, set toolbar option:
CKEDITOR.replace( 'editor1', { ... toolbar: [] });
Add this this line in to config.js file
config.removePlugins= 'toolbar'