Mythical University
Sample content section. Activating a link above will update and navigate to this region.
Although this example uses the word "menu" in the colloquial sense to refer to a set of navigation links, it does not use the WAI-ARIA menu role. That is because the menu and menubar roles require complex functionality, such as composite widget focus management and first-character navigation, that is unnecessary for typical site navigation.
The following example demonstrates using the disclosure design pattern to show and hide dropdown lists of links in a navigation bar for a mythical university web site. Each disclosure button represents a section of the web site, and expanding it shows a list of links to pages within that section.
Similar examples include:
This example demonstrates two different ways of implementing keyboard support. Toggle between them with the following checkbox.
Sample content section. Activating a link above will update and navigate to this region.
Mythical University.
::after
pseudo element border styles so the caret is reliably rendered in high contrast mode of operating systems and browsers.grid
, that is expected to occupy only one stop in the page Tab sequence and manage focus for all its descendants.
Key | Function |
---|---|
Tab Shift + Tab |
Move keyboard focus among top-level buttons, and if a dropdown is open, into and through links in the dropdown. |
Space or Enter |
|
Escape | If a dropdown is open, closes it and sets focus on the button that controls that dropdown. |
Down Arrow or Right Arrow (Optional) |
|
Up Arrow or Left Arrow (Optional) |
|
Home (Optional) |
|
End (Optional) |
|
Role | Attribute | Element | Usage |
---|---|---|---|
aria-controls="IDREF"
|
button
|
The disclosure button controls visibility of the container identified by the IDREF value.
|
|
aria-expanded="false"
|
button
|
|
|
aria-expanded="true"
|
button
|
|
|
aria-current="page"
|
a
|
Indicates that the page referenced by the link is currently displayed. |
<nav aria-label="Mythical University">
<ul id="exTest" class="disclosure-nav">
<li>
<button type="button"
aria-expanded="true"
aria-controls="id_about_menu">
About
</button>
<ul id="id_about_menu">
<li>
<a href="#mythical-page-content">
Overview
</a>
</li>
<li>
<a href="#mythical-page-content">
Administration
</a>
</li>
<li>
<a href="#mythical-page-content">
Facts
</a>
</li>
<li>
<a href="#mythical-page-content">
Campus Tours
</a>
</li>
</ul>
</li>
<li>
<button type="button"
aria-expanded="true"
aria-controls="id_admissions_menu">
Admissions
</button>
<ul id="id_admissions_menu">
<li>
<a href="#mythical-page-content">
Apply
</a>
</li>
<li>
<a href="#mythical-page-content">
Tuition
</a>
</li>
<li>
<a href="#mythical-page-content">
Sign Up
</a>
</li>
<li>
<a href="#mythical-page-content">
Visit
</a>
</li>
<li>
<a href="#mythical-page-content">
Photo Tour
</a>
</li>
<li>
<a href="#mythical-page-content">
Connect
</a>
</li>
</ul>
</li>
<li>
<button type="button"
aria-expanded="true"
aria-controls="id_academics_menu">
Academics
</button>
<ul id="id_academics_menu">
<li>
<a href="#mythical-page-content">
Colleges & Schools
</a>
</li>
<li>
<a href="#mythical-page-content">
Programs of Study
</a>
</li>
<li>
<a href="#mythical-page-content">
Honors Programs
</a>
</li>
<li>
<a href="#mythical-page-content">
Online Courses
</a>
</li>
<li>
<a href="#mythical-page-content">
Course Explorer
</a>
</li>
<li>
<a href="#mythical-page-content">
Register for Class
</a>
</li>
<li>
<a href="#mythical-page-content">
Academic Calendar
</a>
</li>
<li>
<a href="#mythical-page-content">
Transcripts
</a>
</li>
</ul>
</li>
</ul>
</nav>
<div id="mythical-page-content"
class="disclosure-page-content"
tabindex="-1"
role="region"
aria-label="Mythical University sample page content">
<h3 id="mythical-page-heading">
Mythical University
</h3>
<p>
Sample content section. Activating a link above will update and navigate to this region.
</p>
</div>