I researched this a while ago and can't remember how to do it. I want to be able to prevent Firefox from running it's spell-checking functionality on certain input fields from within the page. I know it's possible but can't remember how to set it up.
+19
A:
Talk about having a big "duh" moment! I found the answer after some trial & error:
<textarea spellcheck="false"></textarea>
Wilco
2008-10-21 23:35:30
+2
A:
The "spellcheck" attribute is currently an extra feature available only in Firefox, but it is being considered for inclusion in HTML5.
+1
A:
add the attribute using JQuery $('.textarea_className').attr('spellcheck',false);
This will allow you to return a valid XHTML mark up. =)
Wileez
2010-07-21 03:41:26