HTML CSS examples for HTML Global Attribute:spellcheck
spellcheck
The spellcheck attribute marks if the browser should check the spelling of an element's content.
The following code shows how to use the spellcheck Attribute
<!DOCTYPE HTML> <html> <head> <title>Example</title> </head> <body> <textarea spellcheck="true">This is a testss.</textarea> </body> </html> <!-- w w w.j a va 2s.c om-->
The permitted values for the spellcheck attribute are true (spellchecking is enabled) and false (spellchecking is disabled).