Baseline Widely available
The HTMLInputElement.multiple
property indicates if an input can have more than one value. Firefox currently only supports multiple
for <input type="file">
.
A boolean value.
Examples<input id="my-file-input" type="file" multiple />
let fileInput = document.getElementById("my-file-input");
if (fileInput.multiple) {
// Loop fileInput.files
for (const file of fileInput.files) {
// Perform action on one file
}
// Only one file available
} else {
let [file] = fileInput.files;
}
Specifications Browser compatibility See also
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.3