Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to disable grammatical correctness check on input type text fields

Tags:

Sometime certain words typed into an input type text box, is shown with a red underline on the browser indicating that the word could be grammatically incorrect.

How do I prevent this from showing up?

like image 754
user339108 Avatar asked Aug 02 '10 05:08

user339108


1 Answers

In case someone stumbles across this like I did and doesn't know what attribute to use, you can disable spellcheck for a specific input field or text area using the spellcheck attribute:

<input type="text" spellcheck="false"/>

More info here

like image 50
Framnk Avatar answered Oct 01 '22 19:10

Framnk