How to Disable Form Spellcheck
- Previous page Close auto-complete
- Next page File upload button
Learn how to turn off spellcheck for form elements (grammar correction).
Turn Off Spellcheck
By default, when you type text into form elements, misspelled or incorrect words will appear under a red underline.
However, you can use spellcheck="false"
To turn off spellcheck:
Example
<!-- For input boxes --> <input type="text" spellcheck="false"> <!-- For text areas --> <textarea spellcheck="false"></textarea>
You can also turn off spellcheck for the entire form:
Example
<form spellcheck="false">
Related Pages
Tutorial:HTML form
Reference Manual:HTML spellcheck Attribute
- Previous page Close auto-complete
- Next page File upload button