Online Documentation
- Introduction to JavaScript SpellCheck
- Installation
- Installing JavaScript Spell Check
- Trouble Shooting
- Installing Dictionaries
- Your Custom Dictionary
- Use 1: The Spell Check Window
- Opening the Spell Check Dialog
- Hello World Example
- Call Back after Spellchecking
- Testing The Water
- Advanced Example
- Use 2: Ajax Spell Check
- Using the Ajax Spell-Checker
- Testing for AJAX compatability
- AJAX Spell Checker Example
- Use 3: The Spell Check Function
- The JavaScript spellCheck Function
- JavaScript spellCheck Example
- Advanced Settings
- Object Reference
- JavaScript SpellCheck API Overview
- Properties
- setupPath
- languages
- windowLanguage
- hideSummary
- externalCSS
- caseSensitive
- checkGrammar
- ignoreAllCaps
- ignoreWebAddresses
- ignoreNumbers
- newSentenceOnEachNewLine
- useServerSession
- ajaxEnabled
- Methods
- spellCheckWindow
- spellCheckWindowTest
- spellCheck
- ajaxSpellCheck
- Evant Handlers (CallBack Functions)
- callBack
- ajaxCallBack
- Changing Default Property Values
- ASP.Net and JavaScript SpellCheck
- Licenses & Registration
- Free Trial & Registering
- License Agreement
Use 3: The SpellCheck Function
The spellCheck Function allows you to perform spellchecking in your own Javascript functions and applications.
Its easy to use.
oSpell.spellCheck('ooooops') // returns false
The result is true if the input is spelled correctly. If the input is not spelled correctly, the result is an Array of ranked spelling suggestions
Step 1. Insall javascript Spell Check
This only takes a few minutes, Find out how.
Step 2. Include the JavaScript SpellCheck file in your web page.
This code is normally included in head section of your webpage.
<script src="/JavascriptSpellCheck/Include.js" type="text/javascript" ></script>
Step 3. Check spelling
<script>
var oSpell = new JavaScriptSpellCheck();
var result= oSpell.spellCheck('my input')
alert(result);
</script>
If you need to set up the spellchecker such as language settings - please refer to the Advanced Reference .
