jquery-upload-progress
jquery-upload-progress copied to clipboard
HTML5 multiple file field does not work
In HTML5 there is a new way to define file field that takes multiple files:
<form id="upload" enctype="multipart/form-data" action="index.html" method="post">
<input name="file" type="file" multiple/>
<input type="submit" value="Upload"/>
</form>
Script still works if user selects one file, but if user chooses several files from the dialog the progressbar never appears.
More details see blog post uploading multiple files using html5 and W3 File Upload State.
Feature for multiple files is implemented in Chrome and latest Firefox.
I am also encountering this issue.