6.6 Links are announced multiple times by screen reader (M)
6.6.1 WCAG 1.1.1 (A), 1.3.1 (A), 4.1.1 (A) - Desktop, Mobile
When the user navigates to the ‘Quick Links’ section, each link is announced by the screen reader three times as it announces the title
attribute, the alt
text attribute and the visible text on the element
This repeated content is likely to result in a frustrating and time-consuming experience for screen reader users.
6.6.2 Code Snippet
<div class="iconpad-item " style="width:calc(99% / 4);">
<a class="iconpad-item-link " href="https://canvas.ljmu.ac.uk/" target="_blank">
<div class="iconpad-image-container js-iconpad-item" data-tooltip="Canvas" title="Canvas">
<img src="/~/media/ljmu/icons-white-transparent-bg/canvas-icon.png?h=1920&w=1920&la=en" class="icon-pad-image" alt="canvas">
</div>
<div class="iconpad-text ">Canvas</div>
</a>
</div>
6.6.3 Recommendation
Avoid repeated content by ensuring that each link is only announced once to screen reader users. Remove the title
attribute and assign a null alt text to the images in this section alt=""
.