How to disable Chrome spell check on INPUT with HTML or jQuery code? [duplicate] How to disable Chrome spell check on INPUT with HTML or jQuery code? [duplicate] google-chrome google-chrome

How to disable Chrome spell check on INPUT with HTML or jQuery code? [duplicate]


Use the spellcheck attribute:

<textarea spellcheck="false"></textarea>

See Spellcheck (MSDN) or Controlling spell checking in HTML forms (MDN).


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