'elements' Syntax Parameters and Note : elements « Javascript Collections « JavaScript Reference

'elements' Syntax Parameters and Note

Note:

Returns an array of all <input> and <textarea> elements in <form> element. 
This collection does not includes image <input>.
    
Syntax:
    
document.getElementById("formID").elements // returns all form elements
document.getElementById("formID").elements(param1, param2) // returns an individual 
form element
document.all.formID.elements // IE only
document.all.formID.elements(param1, param2) // IE only


    param1   Required; zero-based index
                       or the desired member's id or name attribute.
                       
    param2   Optional; zero-based index for the result returned
                       if param1 matches more than one element.

    

      
      








Related examples in the same category

1.'elements' Example
2.'elements' JavaScript properties and JavaScript methods
3.'elements' is applied to