aria-busy attribute | ariaBusy property
Sets or retrieves a value indicating whether a live region is finished updating.
![]() |
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.
Standards information
- Accessible Rich Internet Applications (WAI-ARIA) 1.0, Section 6.6
Remarks
| Used in Roles |
|
|---|
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
Show:
