HTMLFieldSetElement

The HTMLFieldSetElement interface has special properties and methods (beyond the regular HTMLElement interface it also has available to it by inheritance) for manipulating the layout and presentation of field-set elements.

Properties

Inherits properties from its parent, HTMLElement.

HTMLFieldSetElement.disabled
A Boolean reflecting the disabled HTML attribute, indicating whether the user can interact with the control.
HTMLFieldSetElement.elementsRead only
The elements belonging to this field set. The type of this property depends on the version of the spec that is implemented by the browser.
HTMLFieldSetElement.formRead only
An HTMLFormControlsCollection or HTMLCollection referencing the containing form element, if this element is in a form.
If the button is not a descendant of a form element, then the attribute can be the ID of any form element in the same document it is related to, or the null value if none matches.
HTMLFieldSetElement.name
A DOMString reflecting the name HTML attribute, containing the name of the field set, used for submitting the form.
HTMLFieldSetElement.typeRead only
The DOMString "fieldset".
HTMLFieldSetElement.validationMessage
DOMString representing a localized message that describes the validation constraints that the element does not satisfy (if any). This is the empty string if the element is not a candidate for constraint validation (willValidate is false), or it satisfies its constraints.
HTMLFieldSetElement.validity
A ValidityState representing the validity states that this element is in.
HTMLFieldSetElement.willValidate
A Boolean false, because <fieldset> objects are never candidates for constraint validation.

Methods

Inherits methods from its parent, HTMLElement.

HTMLFieldSetElement.checkValidity()
Always returns true because <fieldset> objects are never candidates for constraint validation.
HTMLFieldSetElement.setCustomValidity()
Sets a custom validity message for the field set. If this message is not the empty string, then the field set is suffering from a custom validity error, and does not validate.

Specifications

Specification Status Comment
WHATWG HTML Living Standard
The definition of 'HTMLFieldSetElement' in that specification.
Living Standard No change from HTML5.
HTML 5.1
The definition of 'HTMLFieldSetElement' in that specification.
Recommendation  
HTML5
The definition of 'HTMLFieldSetElement' in that specification.
Recommendation The following properties have been added: disabled, elements, name, type, valdiationMessage, validity, and willValidate.
The following methods have been added: checkValidity(), setCustomValidity().
Document Object Model (DOM) Level 2 HTML Specification
The definition of 'HTMLFieldSetElement' in that specification.
Recommendation No change
Document Object Model (DOM) Level 1 Specification
The definition of 'HTMLFieldSetElement' in that specification.
Recommendation Initial definition

Browser compatibility

Feature Chrome Edge Firefox (Gecko) Internet Explorer Opera Safari (WebKit)
Basic support (Yes) (Yes) 1.0 (1.7 or earlier) (Yes)[1] (Yes) (Yes)
Change type of elements property to HTMLCollection 57 ? ? ? 44 ?
Feature Android Webview Chrome for Android Edge Firefox Mobile (Gecko) IE Phone Opera Mobile Safari Mobile
Basic support (Yes) (Yes) (Yes) 1.0 (1.0) (Yes) (Yes) (Yes)
Change type of elements property to HTMLCollection 57 57 ? ? ? 44 ?

[1] IE 11 does not seem to support the elements property on HTMLFieldSetElement

See also

  • The HTML element implementing this interface: <fieldset>.

Document Tags and Contributors

 Last updated by: Sebastianz,