ariaPressed property
Sets or retrieves the pressed state of a button that can be toggled.
![]() |
Syntax
object.setAttribute("ariaPressed",value);var value = object.getAttribute("ariaPressed");
Property values
Type: BSTR
The pressed state.
(true)
-
The element is down (button pressed).
(false)
-
The element is up.
(mixed)
-
The element indicates both pressed and unpressed states.
(undefined)
-
Default. The element state is unknown.
Standards information
- Accessible Rich Internet Applications (WAI-ARIA) 1.0, Section 6.6
Remarks
| Used in Roles |
|
|---|
Buttons with a defined IHTMLElement5::ariaPressed state can be toggled. (When IHTMLElement5::ariaPressed is true the button is down, when false it is up.) Simple command buttons do not need to define a IHTMLElement5::ariaPressed state.
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
Build date: 11/12/2012
