ariacontrols
aria-controls is a WAI-ARIA attribute used to indicate the ID or IDs of the element(s) that are controlled by the current element. It is part of the accessibility framework that helps assistive technologies understand relationships between parts of a user interface.
The attribute is typically applied to interactive widgets such as buttons, links, or other controls that reveal,
Syntax and semantics: aria-controls accepts one or more element IDs, separated by spaces. The IDs refer to
Compatibility and considerations: aria-controls is supported by major screen readers and modern browsers. As with other
Examples and patterns: a button with aria-controls="panel1" may hide or reveal a region with id="panel1". A single