Seeing impaired individuals may use a screen reader application to convert a webpage's text to sound. However AJAX applications can update a webpage without the user realizing the content has changed and needs to be re-processed by the screen reader application. The role attribute can be used to inform the accessibility application that the webpage content has changed, and the nature of the change. They role attribute adds semantic value (meaning) to html elements.
The role attribute is part of the Accessible Rich Internet Applications (ARIA) specification. Shown below is code using the role attribute.
<body role="document"> <div role="banner"> <h1 role="heading">Site Heading</h1> </div> <div role="navigation"> <a role="link" href="page1.htm">Page 1</a> <a role="link" href="page2.htm">Page 2</a> <a role="link" href="page3.htm">Page 3</a> </div> <div role="main">Document Content</div> <div role="footer">Footer Information</div> </body>
alert | A message with important information has appeared or changed. |
article | A section of webpage content has changed. |
banner | An area that contains site related rather than page specific content has changed. |
contentinfo | An area that contains information about the document has changed. |
heading | A heading for a section of the page has changed. |
img | An image has appeared or changed. |
navigation | A group of navigation elements like a menu bar has changed. |
menuitem | An option in a menu or menubar has changed. |
More HTML Code:
• HTML Text Tags Basics
• Make an HTML Element Editable
• How to Write and Run HTML
• HTML List Basics
• How to Code HTML Lists
• Introduction to HTML
• Keywords Meta Tag Generator
• Wrapping Text Around Images
• The Font Tag
• How to Debug HTML