EN
HTML - disable textarea spell check
3 points
In this article, we would like to show you how to disable textarea spell check in HTML.
Quick solution:
xxxxxxxxxx
1
<textarea spellcheck="false"></textarea>
Example preview:

In this example, we disable textarea
element spell check by setting spellcheck
attribute to "false"
value.
xxxxxxxxxx
1
2
<html>
3
<body>
4
<textarea
5
spellcheck="false"
6
rows="5"
7
cols="30"
8
placeholder="Type something here..."
9
></textarea>
10
</body>
11
</html>