Firefox Tomorrow

web api instance property

HTMLSelectElement: multiple property

View on MDN ↗

The multiple property of the HTMLSelectElement interface specifies that the user may select more than one option from the list of options. It reflects the <select> element’s multiple attribute.

Value

A boolean.

Examples

const selectElement = document.getElementById("comment");
console.log(selectElement.multiple);

Specifications

SpecificationsStandards references are available on the canonical MDN page.

Browser compatibility

Browser compatibilityCompatibility data is available on the canonical MDN page.

See also