Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Can I somehow disable spell-checking on HTML textfields (as seen in e.g. Safari)?

share|improve this question

4 Answers

up vote 38 down vote accepted

Javascript cannot override user settings, so unless you use another mechanism other than textfields, this is not (or shouldn't be) possible.

Note that my original answer above is 18 months old, and it is now possible by setting spellcheck='false'

share|improve this answer
1  
why has this been accepted? it does not make sense because it can override the users settings if the browser allows it. see ms2ger's answer. – usr Aug 15 '09 at 22:52
Just because it was the best answer at the time. I'm guessing Michiel hasn't gone back through and marked the other one as correct. That would be fine with me since it is a better answer. – Eric Wendelin Aug 17 '09 at 17:27
1  
+1 Thx that helped a lot – etbal Jun 1 '12 at 7:52

Yes, use spellcheck=false, as defined by HTML5.

share|improve this answer

An IFrame WILL "trigger" the spell checker (if it has content-editable set to true) just as a textfield, at least in Chrome.

share|improve this answer

Use a rich-text WYSIWYG editor. Most of the time, they use iFrames and other non-textarea elements that won't trigger the browser's spell checker.

Try looking at TinyMCE as an example.

share|improve this answer
10  
This answer, while it may work, seems wrong to me for two reasons. One, you're using a huge hammer to hit a tiny nail. Two, a rich editor is probably the place you'd WANT a spell-check, not the place you wouldn't want it. So this is extremely counter-intuitive. – Mr. Shiny and New 安宇 Nov 16 '10 at 15:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.