ariaPlaceholder property
The ariaPlaceholder
property of the Element
interface reflects the
value of the aria-placeholder
attribute, which defines a short hint
intended to aid the user with data entry when the control has no value.
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 ariaPlaceholder;
Implementation
external set ariaPlaceholder(String? value);