ariaDisabled property

String? get ariaDisabled
inherited

The ariaDisabled property of the Element interface reflects the value of the aria-disabled attribute, which indicates that the element is perceivable but disabled, so it is not editable or otherwise operable.

Note: Where possible, use the input element with type="button" or the button element — because those elements have built in semantics and do not require ARIA attributes.

Implementation

external String? get ariaDisabled;
set ariaDisabled (String? value)
inherited

Implementation

external set ariaDisabled(String? value);