Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Sets or retrieves the hidden state of this element.
![]() |
Syntax
object.setAttribute("ariaHidden",value);var value = object.getAttribute("ariaHidden");
Property values
Type: BSTR
The hidden state.
(true)
The element is hidden (not visible).
(false)
Default. The element is visible.
Standards information
- Accessible Rich Internet Applications (WAI-ARIA) 1.0, Section 6.6
Remarks
Used in Roles | No role required. |
This IHTMLElement5::ariaHidden state indicates whether an element is visible or hidden.
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)
.