Skip to content
This repository has been archived by the owner on Nov 10, 2024. It is now read-only.

Latest commit

 

History

History
219 lines (146 loc) · 8.62 KB

adding-a-file-display-list-to-a-multi-file-upload-html-control.org

File metadata and controls

219 lines (146 loc) · 8.62 KB

Adding a file display list to a multi-file upload HTML control

Adding a file display list to a multi-file upload HTML control

WARNING: This is old and likely obsolete.

TL;DR: when you want to upload multiple files

… add a multiple attribute to the input type="file" element.

For example

<input type="file" name="uploads" id="uploads" multiple />

Funging the display

The post further disusses the usability hit with the lack of indication what files have been selected and how to fix it up with some CSS and JavaScript.