WebAIM - Web Accessibility In Mind

E-mail List Archives

Re: Are ambiguous links awful even when there's surrounding context?

for

From: Jeremy Echols
Date: Apr 26, 2019 10:36AM


In our case, the "view more" link is in a list item element directly after other list items, where the list itself is given a heading. I *think* it's got context, but it's not entirely clear to me if items in a list are considered to be within the same context as the other items and the heading.

Below is an example of the HTML:

<h2>Authors</h2>
<ul>
<li><a ...>Jane Doe</a></li>
<li><a ...>Joe Smith</a></li>
<li><a ...>View More</a></li>
</ul>