Presumably, CKEditor has built-in spell checking, but I never saw it work (even on my demo site), so in CKEditor 3 I added the following to the configuration function to enable spell checking and enable the browser context menu:
config.disableNativeSpellChecker = false; config.removePlugins = 'scayt,menubutton,contextmenu';
However, this does not work in CKEditor 4.
How can I enable spell checking and browser context menus in CKEditor 4?
source share