0

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?

master_Alish
  • 373
  • 2
  • 8

2 Answers2

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
0

I have solved it by setting spellcheck=false to body of inner iframe of jHtmlArea.

master_Alish
  • 373
  • 2
  • 8