DISABLING SPELLCHECK IN TEXTAREA ELEMENTS
To disable spell checking on HTML elements in newer browsers (eg. Firefox 3.6) set the attribute spellcheck="false" in the element's opening tag. Note: Some browsers (eg. Safari 5) will not show the red underline for mispelled words until you focus your cursor on a word and then remove it.
<TEXTAREA spellcheck="false">
<TEXTAREA spellcheck="true"> (default)
For more detailed information refer to the W3C Specification.