Created
June 23, 2011 20:26
-
-
Save jimram/1043548 to your computer and use it in GitHub Desktop.
HTML5 Tree Navigation - Accessible Markup with ARIA attributes for screen-readers
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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