Adsense
Popular Posts
- MySQL workbench -"Could not decrypt password cache"
- mod_auth_cas.so error: undefined symbol: SSL_connect
- JavaScript, remove trailing insignificant zeros after toFixed function
- Set Windows path command line
- JavaScript Arrays and Associate Arrays
- Design date and signature box in Latex
- Install APXS in Redhat Linux
- super(props) in React
- jQuery, toggle the display
- PHP function for input sanitizing
Showing posts with label CKEditor. Show all posts
Showing posts with label CKEditor. Show all posts
Thursday, February 15, 2018
Remove CKEDITOR built in SCAYT spellcheck, using default HTML5 spell check
To enable CKEDITOR for following textarea,
<textarea id="EditManual "></textarea>
To remove CKEDITOR built in SCAYT spellcheck, using default HTML5 spell check
JavaScript code
CKEDITOR.replace( 'EditManual', {
removePlugins: 'scayt,wsc',
disableNativeSpellChecker: false
});
Subscribe to:
Posts (Atom)