Languages
[Edit]
EN

HTML - disable textarea spell check

3 points
Created by:
Marley-Marks
712

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:

Textarea spell checking disabled under HTML.
Textarea spell checking disabled under HTML.

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>

 

See also

  1. JavaScript - disable textarea spell check

  2. React - disable textarea spell check

References

  1. <textarea>: The Textarea element - HTML | MDN
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.
Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join