Input elements hold references to their labels (#tilPost)

Today I came across an MDN page which describes the labels property of textarea elements. I hadn’t used this property before and started playing around with it.
It turns out that input elements (and textareas) hold references to the…


This content originally appeared on Stefan Judis Web Development and was authored by Stefan Judis

Today I came across an MDN page which describes the labels property of textarea elements. I hadn't used this property before and started playing around with it.

It turns out that input elements (and textareas) hold references to their connected labels.

Assuming you wrote HTML below, you can access the label element using the labels property. labels returns a NodeList with the connected elements.

<label for="foo">Some input</label>
<input type="text" id="foo">

<script>
  console.log(document.getElementById('foo').labels);
  // NodeList (1) [label]
</script>

I never had a use case for this property, but I bet that accessibility linters use the labels property quite heavily to validate accessible forms. Label your input elements, friends!

When creating forms, I prefer to not use the for attribute on labels and place input elements inside of labels instead. This approach increases the clickable area that will focus the input, and I can save giving the input element an id and the label the for attribute.

I was delighted to find out that the labels property works fine with this approach, too!

<label>
  <span>
    Some input
  </span>
  <input type="text" id="foo">
</label>

<script>
  console.log(document.getElementById('foo').labels);
  // NodeList (1) [label]
</script>

It even returns multiple labels if you're using several labels for one input element.

<label>
  <span>
    Some input
  </span>
  <input type="text" id="foo">
</label>
<label for="foo">Some input</label>

<script>
  console.log(document.getElementById('foo').labels);
  // NodeList (2) [label, label]
</script>

And that's it! Maybe you're writing an accessibility linter right at this moment – then labels can be helpful. :)


Reply to Stefan


This content originally appeared on Stefan Judis Web Development and was authored by Stefan Judis


Print Share Comment Cite Upload Translate Updates
APA

Stefan Judis | Sciencx (2019-10-30T00:00:00+00:00) Input elements hold references to their labels (#tilPost). Retrieved from https://www.scien.cx/2019/10/30/input-elements-hold-references-to-their-labels-tilpost/

MLA
" » Input elements hold references to their labels (#tilPost)." Stefan Judis | Sciencx - Wednesday October 30, 2019, https://www.scien.cx/2019/10/30/input-elements-hold-references-to-their-labels-tilpost/
HARVARD
Stefan Judis | Sciencx Wednesday October 30, 2019 » Input elements hold references to their labels (#tilPost)., viewed ,<https://www.scien.cx/2019/10/30/input-elements-hold-references-to-their-labels-tilpost/>
VANCOUVER
Stefan Judis | Sciencx - » Input elements hold references to their labels (#tilPost). [Internet]. [Accessed ]. Available from: https://www.scien.cx/2019/10/30/input-elements-hold-references-to-their-labels-tilpost/
CHICAGO
" » Input elements hold references to their labels (#tilPost)." Stefan Judis | Sciencx - Accessed . https://www.scien.cx/2019/10/30/input-elements-hold-references-to-their-labels-tilpost/
IEEE
" » Input elements hold references to their labels (#tilPost)." Stefan Judis | Sciencx [Online]. Available: https://www.scien.cx/2019/10/30/input-elements-hold-references-to-their-labels-tilpost/. [Accessed: ]
rf:citation
» Input elements hold references to their labels (#tilPost) | Stefan Judis | Sciencx | https://www.scien.cx/2019/10/30/input-elements-hold-references-to-their-labels-tilpost/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.