aria-multiselectable attribute | ariaMultiselectable property
Sets or retrieves the multiple-selection state of this element.
![]() |
Syntax
| HTML |
|---|
<element aria-multiselectable="p" ... > |
| JavaScript |
|---|
object.setAttribute("aria-multiselectable",value);var value = object.getAttribute("aria-multiselectable");
|
Property values
Type: String
The multiple-selection state.
Standards information
- Accessible Rich Internet Applications (WAI-ARIA) 1.0, Section 6.6
Remarks
| Used in Roles |
|
|---|
This property indicates whether a user may select more then one item from the current list. Lists, trees, and grids may allow users to select more than one item.
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:
