For example, there is a field:
<input type="file" name="files[]" multiple="multiple" class="multiupload" />
How can I acces all the files list when multiple files have selected?
$('.multiupload').val() returns only first file name. I trying to do this in Google Chrome.
Update: For using
multipleattribute for one input filed, there isfilesproperty you could get.