Description
Indicates the current “selected” state of various widgets. See related aria-checked and aria-pressed.
This attribute is used with single-selection and multiple-selection widgets:
Single-selection containers where the currently focused item is not selected. The selection normally follows the focus, and is managed by the user agent.
Multiple-selection containers. Authors SHOULD ensure that any selectable descendant of a container in which the aria-multiselectable attribute is true specifies a value of either true or false for the aria-selected attribute.
Any explicit assignment of aria-selected takes precedence over the implicit selection based on focus. If no DOM element in the widget is explicitly marked as selected, assistive technologies MAY convey implicit selection which follows the keyboard focus of the managed focus widget. If any DOM element in the widget is explicitly marked as selected, the user agent MUST NOT convey implicit selection for the widget.
Example
Example coming soon
Characteristics
Used in Roles
- gridcell
- option
- row
- tab
Inherits into Roles
- columnheader
- rowheader
- treeitem
Value
- true/false/undefined
- Value representing true, false, or not applicable. For example, an element with aria-expanded set to false is not currently expanded; an element with aria-expanded set to undefined is not expandable. The default value for this value type is undefined unless otherwise specified.
- false
- The selectable element is not selected.
- true
- The selectable element is selected.
- undefined (default)
- The element is not selectable.
Semantic HTML
Use the HTML “selected” attribute.
<select>
<option value="volvo">Volvo</option>
<option value="saab">Saab</option>
<option value="vw">VW</option>
<option value="audi" selected>Audi</option>
</select>