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.
In HTML5 there is a new way to define file field that takes multiple files:
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.