
- HTML Tutorial
- HTML - Home
- HTML - Overview
- HTML - Basic Tags
- HTML - Elements
- HTML - Attributes
- HTML - Formatting
- HTML - Phrase Tags
- HTML - Meta Tags
- HTML - Comments
- HTML - Images
- HTML - Tables
- HTML - Lists
- HTML - Text Links
- HTML - Image Links
- HTML - Email Links
- HTML - Frames
- HTML - Iframes
- HTML - Blocks
- HTML - Backgrounds
- HTML - Colors
- HTML - Fonts
- HTML - Forms
- HTML - Embed Multimedia
- HTML - Marquees
- HTML - Header
- HTML - Style Sheet
- HTML - Javascript
- HTML - Layouts
- HTML References
- HTML - Tags Reference
- HTML - Attributes Reference
- HTML - Events Reference
- HTML - Fonts Reference
- HTML - ASCII Codes
- ASCII Table Lookup
- HTML - Color Names
- HTML - Entities
- HTML - Fonts Ref
- HTML - Events Ref
- MIME Media Types
- HTML - URL Encoding
- Language ISO Codes
- HTML - Character Encodings
- HTML - Deprecated Tags
How to turn off spell checking (grammar correction) for HTML form elements?
To turn off spell check for form elements, the code is as follows −
Example
<!DOCTYPE html> <html> <head> <h1>Disabling Spellcheck Example</h1> <form> <p>Your Name:</p> <input type="text" name="fname" spellcheck="false"> <p>About Yourself</p> <textarea name="about you" spellcheck="true"></textarea><br> <input type="submit"> </form> <h2>Type wrong spelling in the above input field to see spellcheck in action</h2> </body> </html>
Output
The above code will produce the following output −
On typing something in the input fields −
- Related Articles
- How to Turn Off Form Autocompletion in HTML?
- HTML Spell Check
- How to programmatically turn off and turn on WiFi in Kotlin?
- How to Turn Off the Water Supply to a Toilet?
- How to turn Android device screen on and off programmatically?
- How to turn off TestNG's default reporters programmatically?
- How to turn off YouTube comments in YouTube Mobile app?
- How to turn Android device screen on and off programmatically using Kotlin?
- How to turn off error bars in Seaborn Bar Plot using Matplotlib?
- How to turn off the upper/right axis tick marks in Matplotlib?
- How to turn off transparency in Matplotlib's 3D Scatter plot?
- How to turn off the ticks and marks of a matlibplot axes?
- How to turn on and off the Incognito Mode on YouTube App
- Golang program to turn off the k’th bit in a number.
- How to generate the language for context free grammar?

Advertisements