'readonly': Whether the content of an element is read-only or not : readonly « Form « HTML / CSS






'readonly': Whether the content of an element is read-only or not

    
<HTML>
<BODY>
<input type="text" 
       name="tfd" 
       value="This text field is not editable" readonly 
       size="30">
</BODY>
</HTML>  

    
      
      








Related examples in the same category