What does this mean?
All ID attributes on a page must be unique, or accessibility technology used by the page can stop working.
More helpFor example, the duplicate id
here makes it unclear which label belongs to which input field:
<label for="name">Your name</label>
<input id="name">
<label for="name">Company name</label>
<input id="name">
Similar issues can occur when using aria-labelledby
and aria-describedby
.
To fix this, ensure all id
attributes on a page are unique.
See Technique H93 for more information.
0% done
How close this website is to fixing this issue.
This issue is quite technical.
To understand what is going on, you may need some familiarity with
HTML,
the language used to create web pages. Ask a web developer if you need help.
HTML | Found on page | Issues |
---|---|---|
<div id="hale-footer-widgets" class="hale-footer__widgets" role="complementary">...</div>
|
125 | |
<div id="hale-footer-widgets" class="hale-footer__widgets" role="complementary"> </div>
|
125 | |
<div id="accordion-default-content-1" class="govuk-accordion__section-content" aria-labelledby="accordion-default-heading-1">...</div>
|
23 | |
<button type="button" id="accordion-default-heading-1" aria-controls="accordion-default-content-1" class="govuk-accordion__section-button" aria-expanded="false">...</button>
|
5 | |
<button type="button" id="accordion-default-heading-1" aria-controls="accordion-default-content-2" class="govuk-accordion__section-button" aria-expanded="false">...</button>
|
5 | |
<button type="button" id="accordion-default-heading-1" aria-controls="accordion-default-content-3" class="govuk-accordion__section-button" aria-expanded="false">...</button>
|
5 | |
<button type="button" id="accordion-default-heading-1" aria-controls="accordion-default-content-4" class="govuk-accordion__section-button" aria-expanded="false">...</button>
|
4 | |
<button type="button" id="accordion-default-heading-1" aria-controls="accordion-default-content-5" class="govuk-accordion__section-button" aria-expanded="false">...</button>
|
3 | |
<button id="search-show-hide" class="hale-header__mobile-controls hale-header__mobile-controls--search" aria-controls="search" aria-label="Open search" aria-expanded="false">...</button>
|
2 | |
<button type="button" id="accordion-default-heading-1" aria-controls="accordion-default-content-6" class="govuk-accordion__section-button" aria-expanded="false">...</button>
|
1 |
298
distinct issues were
found in the sample of 125 web pages.
Only the first 10 issues are shown here.