HTMLSelectElement: required property

The required property of the HTMLSelectElement interface specifies that the user must select an option with a non-empty string value before submitting a form. It reflects the <select> element's required attribute.

Value

A boolean.

Examples

js
const selectElement = document.getElementById("fruits");
console.log(selectElement.required);

Specifications

Browser compatibility

See also