spellcheck - HTML CSS HTML Global Attribute

HTML CSS examples for HTML Global Attribute:spellcheck

Introduction

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

Demo Code

ResultView the demo in separate window

<!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).


Related Tutorials