- Success Criterion 2.4.5
- Conformance level AA
Second Way to Navigate Available on Desktop but Not Mobile
2.4.5 — Multiple Ways
Scenario
Setting
A survey tool's question builder
What’s wrong
"Second way" exists only for desktop layout — mobile removes search/sitemap entirely.
Example
@media (max-width: 768px) {
.question-sidebar,
.question-search { display: none; }
} Why it matters
A mobile user building a long survey loses both search and the question index, leaving scrolling as the only way to jump between questions.
How to test
Check the mobile layout specifically: if search/sitemap links present on desktop are removed on mobile, leaving only one way to navigate, it fails.
How to fix
A second way to navigate must exist across breakpoints, not just on the layout it was designed for first.
@media (max-width: 768px) {
.question-sidebar { display: none; }
}
<button aria-expanded="false" aria-controls="mobile-index">Jump to question</button>
<nav id="mobile-index" hidden>...question list...</nav> Outcome
A survey builder on a phone taps Jump to question and reaches question 12 directly.
Who is affected
Mobile-only users, including many switch and screen magnification users, lose their one alternate way to navigate.
Learn more
- Understanding Understanding document (opens in a new tab)
Related scenarios
- Website With No Real Second Way to Find Content
- Deep Pages Reachable Only Through One Navigation Path
- Site Search That’s Broken or Doesn’t Index Most Pages
- Sitemap Link That Leads to an Empty or Outdated Page
- Sequential-Only Article Pagination With No Table of Contents
- Search Results Page That Can Only Be Reached via Search