41

Any attributes or some tweak to ignore the red-colored underline? or it's ignoreable due to browser settings?

enter image description here

Prashanth Sams
  • 16,250
  • 19
  • 96
  • 119
  • 10
    `spellcheck="false"` https://html.spec.whatwg.org/multipage/interaction.html#spelling-and-grammar-checking – N.J.Dawson Aug 30 '16 at 07:13
  • Perhaps a different problem, but should you try to make your search engine account for misspellings? Solutions just as elasticsearch and solr can do this automatically and are really fast. – jedifans Aug 30 '16 at 07:14

2 Answers2

18

It's not CSS but HTML: spellcheck="false" in your HTML element should do the trick. But I think Safari for example still draws a red line under it.

mxlse
  • 2,534
  • 16
  • 30
5

It's only possible to do this using HTML5. So you can add the spellcheck attribute to HTML element by using jquery. Try this

$("#textarea").attr("spellcheck", "false");
War10ck
  • 12,060
  • 7
  • 40
  • 51
Zolisa Welani
  • 91
  • 1
  • 4