We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
the label element has an attribute "for", which points to an input element label.for == ID
label
label.for == ID
hyperscript scrubs the for attribute out of labels
h('label', {for: "someID"}, text)
The text was updated successfully, but these errors were encountered:
The correct JS attribute to use is htmlFor. To correct the snippet above, write this:
htmlFor
h('label', {htmlFor: "someID"}, text)
Read more: https://stackoverflow.com/questions/15750290/setting-the-html-label-for-attribute-in-javascript?utm_medium=organic&utm_source=google_rich_qa&utm_campaign=google_rich_qa
Sorry, something went wrong.
Or you can specify the attrs property to tell hyperscript sets the following as attributes:
attrs
h('label', { attrs: { for: "someID" } }, text)
But I would go with the suggestion above.
No branches or pull requests
the
label
element has an attribute "for", which points to an input elementlabel.for == ID
hyperscript scrubs the for attribute out of labels
The text was updated successfully, but these errors were encountered: