INTRODUCTION
JavaScriptSpellCheck is a comprehensive spell checking component for JavaScript. You can add custom spell-checking capabilities to your websites in minutes.
JavaScriptSpellCheck provides 3 powerful spell checking features:
- Pop-Up Spell Checker Window similar to that in Microsoft Word. This is ideal for spell checking website forms and data entry.
- Ajax Spell Check. A fully featured Ajax Spellcheck API so you to develop your own rich spellchecking applications.
- SpellCheck() function added to JavaScript
SUPPORT
JavaScriptSpellCheck provides free technical support, even to users of the Free Trial. For support, you can email us at support@javascriptspellcheck.com.
A full technical manual is included in this package in both HTML Help and PDF formats.
GETTING STARTED
Step 1 - install JavaScriptSpellCheck
Copy the downloaded folder JavaScriptSpellCheck folder into the root of out website.
Step 2 - include the JavaScriptSpellCheck Include file
Include the file include.js from the JavaScriptSpellCheck folder.
You should do so in the head of your web page. E.g.
<script src="/JavascriptSpellCheck/Include.js"></script>
Step 3 - 2 lines of code to spellcheck
To open the spellchecker window:
var oSpell= new JavaScriptSpellCheck();
oSpell.spellCheckWindow('textarea1');
It's that simple! This functionality can be integrated into most web pages in minutes.
You can swap textarea1 for the id of your field or use a list of multiple fields such as:
oSpell.spellCheckWindow ('field1','field2','field3')
Advanced Usage
To learn about advanced spell-checking and AJAX please read the manual.
We also have tutorials online...