Firefox Tomorrow

web api instance method

HTMLObjectElement: checkValidity() method

View on MDN ↗

The checkValidity() method of the HTMLObjectElement interface checks if the element is valid, but always returns true because <object> elements are never candidates for constraint validation.

Syntax

checkValidity()

Parameters

None.

Return value

A boolean value, true.

Examples

In the following example, calling checkValidity() returns true.

const element = document.getElementById("myObjectElement");
console.log(element.checkValidity());

Specifications

SpecificationsStandards references are available on the canonical MDN page.

Browser compatibility

Browser compatibilityCompatibility data is available on the canonical MDN page.

See also