views:

48

answers:

3

hello Friends,

Can any one provide me a good tutorial about to implement spell checker?

that is I have a textarea and one button.. what ever I enterd in to the textarea i need to do the spellchecking on that.. thanks

Thanks

A: 

After a quick google search, try this http://code.google.com/p/jquery-spellchecker/. It uses a php script for checking the spelling but could be modified for asp.net mvc. the interface is really simple and nice.

Tim B James
Thanks Tim I used this but no luck.. thanks
Yes tim,but I am getting error something Property Does not support.. in this line of code..$("#text-content") .spellchecker({ lang: "en", engine: "google", suggestBoxPosition: "above" }) .spellchecker("check", function(result){ // spell checker has finished checking words $(".loading").hide(); // if result is true then there are no badly spelt words if (result) { alert('There are no incorrectly spelt words.'); } });
A: 

I use spellchecker.net

Online Spell check, Grammar, and Thesaurus checking Add Spell Checking to virtually any text box on your web site.

The free version adds some ads but there is also a system that uses SCAYT - Spell check as you type. Mind you the licensed version costs a packet!

Rippo