ariaRequired property

String? get ariaRequired
inherited

The ariaRequired property of the Element interface reflects the value of the aria-required attribute, which indicates that user input is required on the element before a form may be submitted.

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 ariaRequired;
set ariaRequired (String? value)
inherited

Implementation

external set ariaRequired(String? value);