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:
<textarea spellcheck="false"></textarea>
Example preview:
Practical example
In this example, we disable textarea element spell check by setting spellcheck attribute to "false" value.
// ONLINE-RUNNER:browser;
<!DOCTYPE html>
<html>
<body>
<textarea
spellcheck="false"
rows="5"
cols="30"
placeholder="Type something here..."
></textarea>
</body>
</html>