What is aria-actions?

aria-actions is a new ARIA attribute. Authors point it at a list of element IDs; each referenced element becomes a secondary action that screen-reader users can invoke from the focused item, without first moving focus to the action button.

The value is an IDREFS list (space-separated IDs). Each target needs an accessible name, a click handler, and a keyboard path. See the explainer for the full authoring requirements.

Reference: w3c/aria PR 1805 defines the attribute. The rendered preview has the current normative text, and the APG Tabs with Action Buttons example shows a working reference implementation.

Tabs with Actions

Each tab points at two action buttons. A screen reader can invoke Close or Pin from the tab itself; keyboard users press Delete on the focused tab as a shortcut for Close.

aria-actions="close-tab-N pin-tab-N"
Try it: Tab into the tablist; //Home/End move focus, and Delete closes the focused tab. With a screen reader, Close and Pin appear as actions on whichever tab has focus.

Contents of index.html.

Last action: (none yet)

Grid with Row Actions

Each row exposes its action buttons via aria-actions set on the <tr>. AT users invoke View details or Archive from the row, without descending into the Actions cell.

aria-actions="view-row-N archive-row-N"
Try it: Tab into the grid; //Home/End move between rows. Tab from a row to reach its action buttons, and Esc to return. With a screen reader, View and Archive appear as actions on whichever row has focus.
Order Customer Status Actions
#1024 Alice Johnson Shipped
#1025 Bob Chen Processing
#1026 Carol Davis Delivered

Order #1024

Customer
Alice Johnson
Status
Shipped
Ordered
2026-06-15
Items
3
Total
$89.95

Order #1025

Customer
Bob Chen
Status
Processing
Ordered
2026-06-18
Items
1
Total
$24.50

Order #1026

Customer
Carol Davis
Status
Delivered
Ordered
2026-06-12
Delivered
2026-06-14
Items
5
Total
$187.20

Last action: (none yet)