W3cubDocs

/DOM

HTMLLabelElement

The HTMLLabelElement interface gives access to properties specific to <label> elements. It inherits methods and properties from the base HTMLElement interface.

Properties

Inherits properties from its parent, HTMLElement.

HTMLLabelElement.control Read only
Is a HTMLElement representing the control with which the label is associated.
HTMLLabelElement.form Read only
Is a HTMLFormElement object representing the form with which the labeled control is associated, or null if there is no associated control, or if that control isn't associated with a form. In other words, this is just a shortcut for HTMLLabelElement.control.form.
HTMLLabelElement.htmlFor
Is a string containing the ID of the labeled control. This reflects the for attribute.

Methods

No specific methods; inherits methods from its parent, HTMLElement.

Specifications

Browser compatibility

Feature Chrome Edge Firefox (Gecko) Internet Explorer Opera Safari (WebKit)
Basic support (Yes) (Yes) 1.0 (1.7 or earlier) [1] (Yes) (Yes) (Yes)
Feature Android Edge Firefox Mobile (Gecko) IE Phone Opera Mobile Safari Mobile
Basic support (Yes) (Yes) 1.0 (1.0) [1] (Yes) (Yes) (Yes)

[1] The form attribute's meaning was changed in a specification revision on April 28, 2016. Previously, it returned a form with which the label was directly associated. However, labels are no longer members of forms; instead, this attribute now returns the form with which the control is affiliated.

See also

© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/HTMLLabelElement