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