Firefox Tomorrow

web api instance property

HTMLTextAreaElement: required property

View on MDN ↗

The required property of the HTMLTextAreaElement interface specifies that the user must fill in a value before submitting a form. It reflects the <textarea> element’s required attribute.

Value

A boolean.

Examples

const textareaElement = document.getElementById("comment");
console.log(textArea.required);

Specifications

SpecificationsStandards references are available on the canonical MDN page.

Browser compatibility

Browser compatibilityCompatibility data is available on the canonical MDN page.

See also