ariaReadOnly property
The ariaReadOnly
property of the Element
interface reflects the
value of the
aria-readonly
attribute, which indicates that the element is not editable, but is
otherwise operable.
Note: Where possible use an HTML
input
element withtype="text"
or atextarea
as these have built in semantics and do not require ARIA attributes.
Implementation
external String? get ariaReadOnly;
Implementation
external set ariaReadOnly(String? value);