Remove status bar from CKEditor Remove status bar from CKEditor javascript javascript

Remove status bar from CKEditor


Like this, for example:

CKEDITOR.appendTo('container', {    removePlugins: 'elementspath' });

As mentioned by Jason below, you might also want to remove the bar completely using:

CKEDITOR.appendTo('container', {    removePlugins: 'elementspath',    resize_enabled: false});