Disallows elements with duplicated ID
- Rule ID:
- no-dup-id
- Category:
- Document
- Standards:
- HTML5
The ID of an element must be unique within the document.
When <template>
is used the id
within the template must be unique but can otherwise contain duplicates as it isn't attached to the document yet.
Rule details
Examples of incorrect code for this rule:
<div id="foo"></div>
<div id="foo"></div>
Examples of correct code for this rule:
<div id="foo"></div>
<div id="bar"></div>