aria-flowto attribute | ariaFlowto property
Specifies the id of the next element or elements in an alternative reading order.
![]() |
Syntax
| HTML |
|---|
<element aria-flowto="p" ... > |
| JavaScript |
|---|
object.setAttribute("aria-flowto",value);var value = object.getAttribute("aria-flowto");
|
Property values
Type: String
A space-separated list of id property values.
Standards information
- Accessible Rich Internet Applications (WAI-ARIA) 1.0, Section 6.6
Remarks
| Used in Roles |
|
|---|
This property defines element relationships and associations that cannot be readily determined from the document structure.
When the aria-flowto property contains a single id property, the assistive technology should resume reading at the targeted element. However, when the aria-flowto property contains multiple id properties, the assistive technology should give users the option of navigating to any targeted element.
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:
