Hello Bonjour Guten Tag
To change the spell-checking dictionary selections, we use the languages property of the JavaScriptSpellCheck class
var oSpell= new JavaScriptSpellCheck(); oSpell.languages="Francais" ;
The above expression sets the Spell Checker to French. Below, we use 2 languages - German and English together by setting languages to a comma separated list: oSpell.languages="English (USA),Deutsche";
You can download extra dictionaries from this website, and install them by unzipping them in to the Dictionaries directory with your JavaScriptSpellCheck installation folder.
You can change the User Interface language of the Spell Checker popup window using the windowLanguage property.
oSpell.windowLanguage ="EN" // For English ;
Please refer to the manual for a full list of languages.
< More Demonstrations of JavaScript Spell Check