Element.ariaSelected
The ariaSelected
property of the Element
interface reflects the value of the aria-selected
attribute, which indicates the current "selected" state of elements that have a selected state.
Syntax
var ariaSelected = element.ariaSelected; element.ariaSelected = ariaSelected
Value
A DOMString
with one of the following values:
"true"
-
The item is selected.
"false"
-
The item is not selected.
"undefined"
-
The item is not
Examples
In this example the aria-selected
attribute on the element with an ID of tab-id
is set to "true". Using ariaSelected
we update the value to "false".
<button role="tab" aria-selected="true" aria-controls="tabpanel-id" id="tab-id">Tab label</button>
let el = document.getElementById('tab-id'); console.log(el.ariaSelected); // true el.ariaSelected = "false"; console.log(el.ariaSelected); // false
Specifications
Specification |
---|
Accessible Rich Internet Applications (WAI-ARIA) 1.2 (WAI-ARIA 1.2) # dom-ariamixin-ariavaluemax |
Browser compatibility
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
ariaSelected |
81 |
81 |
No |
No |
68 |
12.1 |
81 |
81 |
No |
58 |
12.2 |
13.0 |
See also
© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/Element/ariaSelected