meow
meow

Reputation: 28164

Tell browser not to do spellcheck for a given textarea

I have a text area that is not meant for spell checking. It is making my app look ugly.

How do I tell the browser to skip spell checking for this text area?

Upvotes: 1

Views: 124

Answers (1)

Olical
Olical

Reputation: 41352

Try adding this parameter to the html tag.

spellcheck='false'

Upvotes: 2

Related Questions