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

4

6

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

Stouthearted answered 22/9, 2011 at 5:22 Comment(2)
If the browser supports it and the user has it enabled, it will spellcheck. My browser spellchecks everything, always.Streptokinase
As animuson says, leave it to the user if they want it. Also, ColdFusion is server-side technology, so will not itself do spell checking on the client-side (though there may be some CF-based widgets that output JavaScript that can do it).Hastie
S
3

I have used Foundeo's spell checker before. Very easy to integrate and customise.

Sheen answered 22/9, 2011 at 6:25 Comment(0)
P
8

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">
Prostrate answered 4/11, 2014 at 9:19 Comment(0)
S
3

I have used Foundeo's spell checker before. Very easy to integrate and customise.

Sheen answered 22/9, 2011 at 6:25 Comment(0)
M
1

The browser will automatically spell check if it supports that feature. For JavaScript based spell checking, see here: http://www.javascriptspellcheck.com/

-Sunjay

Martin answered 22/9, 2011 at 5:44 Comment(0)
D
0

If using React, you have to capitalize the c:

spellCheck='true'

Dualism answered 31/8, 2020 at 17:39 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.