Skip to content

Instantly share code, notes, and snippets.

@jimram
Created June 23, 2011 20:26
Show Gist options
  • Save jimram/1043548 to your computer and use it in GitHub Desktop.
Save jimram/1043548 to your computer and use it in GitHub Desktop.
HTML5 Tree Navigation - Accessible Markup with ARIA attributes for screen-readers
<nav>
<ul role="tree" tabindex="0" aria-labelledby="label_1">
<li role="treeitem" tabindex="-1" aria-expanded="true"><a href="#">Colours</a></li>
<li role="group">
<ul>
<li role="treeitem" tabindex="-1"><a href="#">Red</a></li>
<li role="treeitem" tabindex="-1"><a href="#">Blue</a></li>
<li role="treeitem" tabindex="-1"><a href="#">Yellow</a></li>
<li role="treeitem" tabindex="-1"><a href="#">Green</a></li>
<li role="treeitem" tabindex="-1"><a href="#">Orange</a></li>
</ul>
</li>
</ul>
</nav>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment