Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I disable the spell checker on text inputs on the iPhone

Sometimes the spell checker is unnecessary, captchas, usernames, emails, etc. Is there a way disable it on some text inputs/text areas?

like image 726
Ben Shelock Avatar asked Aug 05 '10 16:08

Ben Shelock


People also ask

How do I remove spell check from input?

Answer: Set the spellcheck attribute to false.

Where is spell check in iPhone settings?

In order to enable the spell check feature on iOS, from your Home Screen go to Settings - General, then scroll down and go to Keyboard and scroll down and find the Spell Checking switch. Tap the Spell Checking switch and the Auto-Correction switch to enable them.

How do I turn off spell check in settings?

Here's how. Click File > Options > Proofing, clear the Check spelling as you type box, and click OK. To turn spell check back on, repeat the process and select the Check spelling as you type box.


1 Answers

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="none" autocorrect="off" autocomplete="off" /> 

Just tested in OS4 and it's working.

UPDATE: As of iOS5 on and off values in autocapitalize have been deprecated. Use none to completely disable automatic capitalization.

like image 52
David Kaneda Avatar answered Sep 24 '22 17:09

David Kaneda