Nanospell Spell Checking Software Components
JavaScript jQuery CKEditor TinyMCE PHP ASP.Net Classic ASP

PHP SpellChecker

Spell Checking More Than 1 Field At A Time

  1. Spell-checking ALL Fields
  2. Spell-checking Multiple Fields By Id
  3. Spell-checking All TextAreas
  4. Spell-checking All Form Input Fields
  5. Spell-checking All Rich HTML Editors (WYSIWYGS)

PHPSpellCheck can be set to spell check multiple fields in several ways - using the Fields property of either the SpellCheckButton or SpellAsYouType Class.

Spell-checking ALL Fields

$mySpell->Fields = "ALL";
Learn More...

Spell-checking Multiple Fields By Id

$mySpell->Fields = "MyField1,MyHTMLElement2,MyIFrame3,MyTextInput4";

Learn More...

Spell-checking All TextAreas

$mySpell->Fields = "TEXTAREAS";

Learn More...

Spell-checking All Form Input Fields

$mySpell->Fields = "TEXTINPUTS";

Learn More...

Spell-checking All Rich HTML Editors (WYSIWYGS)

$mySpell->Fields = "EDITORS";

Learn More...