ariaChecked property

String? get ariaChecked

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 with type="checkbox" as this element has built in semantics and does not require ARIA attributes.

Implementation

external String? get ariaChecked;
set ariaChecked (String? value)

Implementation

external set ariaChecked(String? value);