I am trying to use HTML spell checking on a text box in Chrome. This works with text that I type, but I need to use it with existing text. This does not work, only when I select the text, spell check is activated. I just use this:
<TEXTAREA spellcheck="true" class="operatorchat" name="inputtext" id="inputtext">This text is worng!</TEXTAREA>
In Firefox, this works. Is there any code to make it work, I was thinking about selecting and deselecting using Javascript, but it does not work.
Thanks in advance.
source
share