HTMLFormElement.elements

The HTMLFormElement.elements property returns an HTMLFormControlsCollection (HTML 4 HTMLCollection) of all the form controls contained in the FORM element, with the exception of input elements which have a type attribute of image.

You can access a particular element by using either an index or the element name or id.

Syntax

JavaScript
nodeList = HTMLFormElement.elements

Example

JavaScript
var inputs = document.getElementById("form1").elements;
var inputByIndex = inputs[2];
var inputByName = inputs["login"];

Specifications

Specification Status Comment
WHATWG HTML Living Standard
The definition of 'HTMLFormElement.elements' in that specification.
Living Standard  
Document Object Model (DOM) Level 2 HTML Specification
The definition of 'HTMLFormElement.elements' in that specification.
Recommendation Initial definition

License

© 2016 Mozilla Contributors
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-us/docs/web/api/htmlformelement/elements

API HTML DOM NeedsCompatTable NeedsMarkupWork Property Reference Référence