aria-required attribute | ariaRequired property
Sets or retrieves the form-completion requirement of this element.
![]() |
Syntax
| HTML |
|---|
<element aria-required="p" ... > |
| JavaScript |
|---|
object.setAttribute("aria-required",value);var value = object.getAttribute("aria-required");
|
Property values
Type: String
The form-completion requirement.
Standards information
- Accessible Rich Internet Applications (WAI-ARIA) 1.0, Section 6.6
Remarks
| Used in Roles |
|
|---|
The aria-required property indicates which input fields of a form must be filled in before it can be submitted. If the user attempts to submit the form without the required information, you may set aria-invalid to indicate the error.
Note For cross-browser compatibility, always use the WAI-ARIA attribute syntax to access and modify ARIA properties, for example
object.setAttribute("aria-valuenow", newValue). See also
Show:
