HTMLFormElement: reportValidity() method

The HTMLFormElement.reportValidity() method returns true if the element's child controls satisfy their validation constraints. When false is returned, cancelable invalid events are fired for each invalid child and validation problems are reported to the user.

Syntax

reportValidity()

Return value

true or false

Example

document.forms["myform"].addEventListener(
  "submit",
  () => {
    document.forms["myform"].reportValidity();
  },
  false
);

Specifications

Specification
HTML Standard
# dom-cva-reportvalidity-dev

Browser compatibility

BCD tables only load in the browser