--- title: HTMLLabelElement slug: Web/API/HTMLLabelElement translation_of: Web/API/HTMLLabelElement ---
{{ APIRef("HTML DOM") }}

The HTMLLabelElement interface gives access to properties specific to {{HTMLElement("label")}} elements. It inherits from {{domxref("HTMLElement")}}. 

Properties

Inherits properties from its parent, {{domxref("HTMLElement")}}.

Name Type Description
accessKey {{domxref("DOMString")}} Reflects the {{htmlattrxref("accesskey", "label")}} HTML attribute.
control {{readonlyInline}} {{domxref("HTMLElement")}} The labeled control.
form {{readonlyInline}} {{domxref("HTMLFormElement")}} The form owner of this label.
htmlFor {{domxref("DOMString")}} The ID of the labeled control. Reflects the {{htmlattrxref("for", "label")}} attribute.

Methods

No specific method; inherits properties from its parent, {{domxref("HTMLElement")}}.

Specifications

Specification Status Comment
{{SpecName('HTML WHATWG', "forms.html#the-label-element", "HTMLAnchorElement")}} {{Spec2('HTML WHATWG')}} No change from {{SpecName("HTML5 W3C")}}.
{{SpecName('HTML5 W3C', "forms.html#the-label-element", "HTMLAnchorElement")}} {{Spec2('HTML5 W3C')}} The property accessKey is now defined on {{domxref("HTMLElement")}}.
The following property has been added: control.
{{SpecName('DOM2 HTML', 'html.html#ID-13691394', 'HTMLLabelElement')}} {{Spec2('DOM2 HTML')}} No change from {{SpecName("DOM1")}}.
{{SpecName('DOM1', 'level-one-html.html#ID-13691394', 'HTMLLabelElement')}} {{Spec2('DOM1')}} Initial definition.

Browser compatibility

{{CompatibilityTable}}
Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari (WebKit)
Basic support {{CompatVersionUnknown}} {{CompatGeckoDesktop(1.0)}} {{CompatVersionUnknown}} {{CompatVersionUnknown}} {{CompatVersionUnknown}}
Feature Android Firefox Mobile (Gecko) IE Phone Opera Mobile Safari Mobile
Basic support {{CompatVersionUnknown}} {{CompatGeckoMobile(1.0)}} {{CompatVersionUnknown}} {{CompatVersionUnknown}} {{CompatVersionUnknown}}

See also