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.

I have an input in an HTML page

<input id="SearchBox" type="text" value="" width="300px" 
       title="Search the card pool" autocomplete="off" maxlength="170">

I would like to switch this off with something like autospellcheck="off". Is there a way to achieve that?

Is there also a way to switch this off for Firefox?

share|improve this question

2 Answers

up vote 20 down vote accepted
<textarea spellcheck="false"></textarea>

in HTML 5

See The Road to HTML 5: spellchecking

share|improve this answer
this worked for me, but the linked document is a little out date: It says Chrome "ignores the spellcheck attribute entirely" when in fact it now respects it. – olooney May 2 '10 at 0:59
2  
this doesn't work with <input type="text"> – tybro0103 May 13 '11 at 2:47

add the attribute using JQuery $('.textarea_className').attr('spellcheck',false);

I was able to do this with JQUery so that I can return 0 errors for my XHTML validation

share|improve this answer

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.