I want to enable spell check feature in HTML text areas. I am using ColdFusion. Is this possible?
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">
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With