How to disable auto-complete, auto-correct in HTML input
Thomas Mak wrote at 2017-05-04.
The code that disables auto-complete, auto-correct, auto-capitalize and spell check.
<input autocomplete="off" autocorrect="off" autocapitalize="none" spellcheck="false">
Spellcheck doc:
https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/spellcheck
Auto-Complete doc:
Auto-Capitalize doc:
Possible options:
none
sentences
words
characters
Note, on
, off
is deprecated.
Comments
no comments yet.