'checked' Syntax and Note : checked « Javascript Properties « JavaScript Reference

'checked' Syntax and Note

Note:

Read and write property. 
Whether or not a checkbox or radio button is checked. 
    
Syntax:
    
document.getElementById("inputID").checked = value
document.all.inputID.checked = value // IE only

    

      
      








Related examples in the same category

1.'checked' Example
2.'checked' Possible Values
3.'checked' is applied to