ariaDisabled property
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 withtype="button"
or thebutton
element — because those elements have built in semantics and do not require ARIA attributes.
Implementation
external String? get ariaDisabled;
Implementation
external set ariaDisabled(String? value);