ariaPressed property

String? get ariaPressed

The ariaPressed property of the Element interface reflects the value of the aria-pressed attribute, which indicates the current "pressed" state of toggle buttons.

Note: Where possible use an HTML input element with type="button" or the button element as these have built in semantics and do not require ARIA attributes.

Implementation

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

Implementation

external set ariaPressed(String? value);