I'm using jHTMLArea as wysiwyg editor. And when Chrome spellchecking is turned on, text is underlined with red waved lines. How to disable it?
Asked
Active
Viewed 213 times
2 Answers
0
With HTML5 you can do this with spellcheck=false
.
You must add this to the textarea
of your jHTMLArea.
With jQuery you can do that with
$("textarea").attr('spellcheck', false)

Julian
- 2,724
- 1
- 15
- 21
-
jHtmlArea creates iframe with another html page – master_Alish Jul 11 '16 at 06:19
-
you can not manipulate content in an iframe. But when you have access to the page displayed in the iframe you can set it there – Julian Jul 11 '16 at 11:28
0
I have solved it by setting spellcheck=false to body of inner iframe of jHtmlArea.

master_Alish
- 373
- 2
- 8