Spell Checking More Than 1 Field At A Time


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

SourceCode:
$mySpell->Fields = "ALL";

Learn More...

Spell-checking Multiple Fields By Id

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

Learn More...

Spell-checking All TextAreas

SourceCode:
$mySpell->Fields = "TEXTAREAS";

Learn More...

Spell-checking All Form Input Fields

SourceCode:
$mySpell->Fields = "TEXTINPUTS";

Learn More...

Spell-checking All Rich HTML Editors (WYSIWYGS)

SourceCode:
$mySpell->Fields = "EDITORS";

Learn More...