Muhammad Akhtar
Muhammad Akhtar

Reputation: 52241

How to select multiple files using jquery multifile

I am using jquery multifile upload control http://www.fyneworks.com/jquery/multiple-file-upload/. I am able to select multiple images one by one. But I also want to select multiple images at once when the user hits the browse button. Is there any workaround using jquery multifile control?

Upvotes: 2

Views: 4268

Answers (3)

fyneworks
fyneworks

Reputation: 106

Our plugin now supports HTML5, so...

  1. users can select multiple files one-at-a time in xHTML and <= HTML4
  2. users can select multiple files at once in HTML5 with the "multiple" attribute

Checkout the new version of the plugin here: http://www.fyneworks.com/jquery/multifile

And if you want to help us improve the plugin, fork us here: http://github.com/fyneworks/multifile

Upvotes: 4

Digs
Digs

Reputation: 641

HTML5 allows the user to select multiple files and therefore bypasses the need for the jQuery plugin.

Upvotes: 0

Farhan Salam
Farhan Salam

Reputation: 1485

I am afraid there isn't (fyneworks website says you can't select multiple files at once), you can use HTML5 multiple tag or try this plugin

Upvotes: 2

Related Questions