A BETTER SPELL CHECKING FOR THE WYSIWYG EDITOR - Dec 29th, 2018


I think that everyone can agree that the spellchecker plugin that comes with the Tinymce editor leaves much to be
desired.

The PHPSpellChecker at www.phpspellcheck.com might be a replacement worth investigating.

I haven't tried it myself (none of my sites use the WYSIWYG editor) but Jacob Mellor the developer offered the
following when asked about integration.

References:

http://www.tinymce.com/tryit/custom_toolbar_button.php
http://www.phpspellcheck.com/Javascript-AJAX-Spell-Check-API


<script src="/phpspellcheck/include.js' type='text/javascript'></script>

tinyMCE.init({
///
setup : function(ed) {
// Add a custom button
ed.addButton('mybutton', {

title : 'PHP Spell Check',
image : '/phpspellcheck/themes/buttons/example.gif',
onclick : function() {
var mySpell = new LiveSpellInstance();

mySpell.Fields = "EDITORS";
mySpell.checkInWindow();
}
});
}
});


</script>



The materials on this web site have been created for use with CMS Builder content management software. CMS Builder software is published and licensed for use by InteractiveTools.com. Please contact Interactive Tools for information on the downloading of the software or the purchasing of licenses.


Terms of Service