Does spell check in HTML5 support all languages?

2.3k Views Asked by At

I would like to know whether spell check in HTML5 support all languages. Is there any reference available for the same anywhere in the internet ?

Thanks, Aromal

1

There are 1 best solutions below

2
On BEST ANSWER

The spellcheck attribute is used to inform the browser whether or not it should apply spell-checking to an input element (this defaults to false).

<textarea spellcheck="true"></textarea>

You can identify a language which the browser should use to spell-check an element:

<textarea lang="en"></textarea>

If the user does not have a dictionary installed for that language then the spell check is disabled for that element.

So to answer your question - spellcheck itself does not support any languages, it is a flag to identify whether a browser should spell check an input element.

References