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

'form' Syntax and Note

Note:

Read-only property. 
Returns a reference to the <form> element. 


Value: 
An object 
null               (if the container element is not a <form>).
    
Syntax:
    
document.getElementById("elementID").form
document.all.elementID.form // IE only

    

      
      








Related examples in the same category

1.'form' Example
2.'form' is applied to