Computer >> Computer tutorials >  >> Programming >> HTML

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 −

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

On typing something in the input fields −

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