Element.ariaSetSize
The ariaSetSize
property of the Element
interface reflects the value of the aria-setsize
attribute, which defines the number of items in the current set of listitems or treeitems.
Syntax
var ariaSetSize = element.ariaSetSize; element.ariaSetSize = ariaSetSize
Value
A DOMString
containing an integer.
Examples
In this example the aria-setsize
attribute on the element with an ID of tab-id
is set to "3", to inform a device that there are currently 3 tabs in the group. Using ariaSetSize
we update the value to "4".
<button role="tab" aria-selected="true" aria-setsize="3" aria-controls="tabpanel-id" id="tab-id">Tab label</button>
let el = document.getElementById('tab-id'); console.log(el.ariaSetSize); // 3 el.ariaSetSize = "4"; console.log(el.ariaSetSize); // 4
Specifications
Specification |
---|
Accessible Rich Internet Applications (WAI-ARIA) 1.2 (WAI-ARIA 1.2) # dom-ariamixin-ariasetsize |
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 | |
ariaSetSize |
84 |
84 |
No |
No |
70 |
12.1 |
84 |
84 |
No |
60 |
12.2 |
14.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/ariaSetSize