Syntax error How to turn off spell checking (grammar correction) for HTML form elements?

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

 Live Demo

<!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 −

Updated on: 2020-05-06T14:07:54+05:30

160 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements