Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I enable spell check feature in HTML text area?

I want to enable spell check feature in HTML text areas. I am using ColdFusion. Is this possible?

like image 905
Jeyaganesh Avatar asked Dec 22 '22 08:12

Jeyaganesh


1 Answers

You could try to enable native spellcheck support for input forms, like this:

<input type="text" size="50" spellcheck="true">
<textarea spellcheck="true"></textarea>

You can also designate a correct language dictionary to use. If not specified, the browser's default language dictionary will be used. You can override browser defaults by specifying the lang attribute .

<input type="text" spellcheck="true" lang="en">
like image 54
Alexey Petushkov Avatar answered Jan 11 '23 02:01

Alexey Petushkov