ariaPlaceholder property

String? get ariaPlaceholder

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 with type="text" or a textarea as these have built in semantics and do not require ARIA attributes.

Implementation

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

Implementation

external set ariaPlaceholder(String? value);