1 out of 2 rated this helpful - Rate this topic

aria-selected attribute | ariaSelected property

Sets or retrieves the selection state of this element.

Internet Explorer 8

Syntax

HTML
<element aria-selected="p" ... >
JavaScript
object.setAttribute("aria-selected",value);var value = object.getAttribute("aria-selected");

Property values

Type: String

The selection state.

(true)

The element is selected.

(false)

The element is not selected.

(undefined)

Default. The element state is unknown.

Standards information

Remarks

Used in Roles
gridcell
option
row
tab

 

Selecting an element indicates that it is chosen for an action, and most likely has focus.

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

Accessible Rich Internet Applications (ARIA)
W3C ARIA-Selected

 

 

Send comments about this topic to Microsoft

Build date: 11/21/2012

Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.