You can either specifically mark specific textareas to be spell checked
<textarea class='rsw_spellable' .....></textarea>
you can add rsw_spellable to existing class attributes too, eg.
<textarea class='someclass rsw_spellable' .....></textarea>
You can instead disable in JS
rapidSpell.ayt_ignoreTextBoxIds[rapidSpell.ayt_ignoreTextBoxIds.length] = 'textBox1'; //where textBox1 is the id attribute of a textbox
or
<input type='text' ... nospell="true"/>
Hope that helps
Jim
-your feedback is helpful to other users, thank you!