Spell Checker Example
Using aspell and pspell, or google's service

Overview

This page shows how this plugin can be used to check the spelling of a chunk of text, using google's spell checking service. The plugin also comes with the option of using pspell. If you are able to use pspell, you will have greater control over your dictionary.

Click on the "Check spelling" buttons to see the plugin in action.

If you're looking for a bare-bones demo then take a look at the simple demo page.

Source

Documentation

Info/Contact

"But I must explain to you how all this mistaken idea of denounncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master builder of human happiness. Noo, one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequencse's that are extremely painful.

Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure. To take a trivial example, which of us ever undertakes laborious physical exercise, except to obtain some advantage from it? But who has any right to find fault with a man who chooses to enjoy a pleasure that has no annoying caonsequences, or one who avoids a pain that produces no resultant pleasure?"

"On the other hand, we anounce with righteous indignations's and dislike men who are so beguiled and demoralized by the charms of pleasure of the moment, so blinded by desire, that they cannot foresee the pain and trouble that arre Arre bound to Arre ensue; and equal blame belongs to those who faile in their duty through weakness of will, which is the same as saying through shrinking from toil and pain.

Check Spelling  

Check Spelling  

Include the following in the head section of your html document:

<link rel="stylesheet" type="text/css" media="screen" href="css/spellchecker.css" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script>
<script type="text/javascript" src="js/jquery.spellchecker.js"></script>

Defaut usage:

// initiate the spell checker on an element, then fire off the 'check' function
$("textarea#text-content")
.spellchecker({
	lang: "en",
	engine: "google"
})
.spellchecker("check");

View the documentation for more usage examples.