2 out of 2 rated this helpful - Rate this topic

aria-describedby attribute | ariaDescribedby property

[This documentation is preliminary and is subject to change.]

Sets or retrieves a list of elements that describe the current object.

Internet Explorer 8

Syntax

HTML
<element aria-describedby="p" ... >
JavaScript
object.setAttribute("aria-describedby",value);var value = object.getAttribute("aria-describedby");

Property values

Type: String

A space-separated list of id property values.

Remarks

This property defines element relationships and associations that cannot be readily determined from the document structure.

The ariaDescribedby property is intended to provide additional information which some users might need, and supplements the basic information provided by label.

If more than one id property is specified, all elements are combined together to create a single description.

Note  For cross-browser compatibility, always use the WAI-ARIA attribute syntax to access and modify ARIA properties, for example object.setAttribute("aria-valuenow", newValue).

See also

Accessible Rich Internet Applications (ARIA)
Reference
ariaControls
ariaFlowto
ariaLabelledby
ariaOwns
ariaPosinset
ariaSetsize

 

 

Build date: 2/13/2012

Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ
description element could also have a tabIndex added to it

Looks like adding a tabIndex to the div will also make it accessible.

http://msdn.microsoft.com/en-us/library/ms528445(v=VS.85).aspx

description element needs to be a label
The property works, but the HTML element containing the description must be in HTML Label element for the content to be reflected in the IAccessible Description property read out by screenreaders like JAWS
still broken...
This property also doesn't work in ie9 and JAWS 12. what's the problem? Why document it if it's not supported?
JAWS 11
For JAWs 11, this property is broken in IE8.  It is currently ignored and JAWs will not speak the area marked in "aria-describedby".