ariaChecked property
The ariaChecked
property of the Element
interface reflects the
value of the
aria-checked
attribute, which indicates the current "checked" state of checkboxes,
radio buttons, and other widgets that have a checked state.
Note: Where possible use an HTML
input
element withtype="checkbox"
as this element has built in semantics and does not require ARIA attributes.
Implementation
external String? get ariaChecked;
Implementation
external set ariaChecked(String? value);