aria-busy attribute | ariaBusy property

Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
2 out of 5 rated this helpful - Rate this topic

Sets or retrieves a value indicating whether a live region is finished updating.

Internet Explorer 8

Syntax

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

Property values

Type: String

The busy state.

(true)

The region is loading.

(false)

Default. Clear the busy state.

(error)

The region is invalid.

Standards information

Remarks

Used in Roles
No role required.

 

This property applies to live regions in the user interface. If authors know that multiple parts of the same live region need to be loaded, they can set aria-busy to true when the first part is loaded, and then set it to false when the last part is loaded.

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)
W3C ARIA-Busy

 

 

Send comments about this topic to Microsoft

Build date: 11/21/2012

Did you find this helpful?
(1500 characters remaining)

Community Additions

© 2013 Microsoft. All rights reserved.