Is it "ok" to add attributes to various tags to use in JavaScript DOM parsing?
For example if I want to have required fields in a form, would it be a bad practice if I would do this:
<input type="submit" name="name" required="true"/>
Thank you.
|
Is it "ok" to add attributes to various tags to use in JavaScript DOM parsing? For example if I want to have required fields in a form, would it be a bad practice if I would do this:
Thank you. |
|||||||
|
|
From that question: HTML 5 explicitly allows custom attributes that begin with Source: http://www.w3.org/TR/html5/elements.html#embedding-custom-non-visible-data-with-the-data-attributes |
|||
|