Sometimes the spell checker is unnecessary, captchas, usernames, emails, ect. Is there a way disable it on some text inputs/text areas?
+3
A:
As noted by my buddy Jonathan Stark, you should be able to use attributes like autocorrect and autocomplete to achieve the effect you're looking for:
<input type="text" placeholder="My Field" name="myfield"
autocapitalize="off" autocorrect="off" autocomplete="off" />
Just tested in OS4 and it's working.
David Kaneda
2010-08-06 23:06:40
+4
A:
Actually there is literally a spell check attribute in HTML5:
<textarea spellcheck="false">
Re: http://blog.whatwg.org/the-road-to-html-5-spellchecking
Browser support is, of course, limited.
Chris Coyier
2010-08-07 16:28:34
It's Chris Coyier! I follow your blog :)
Ben Shelock
2010-08-07 16:37:22