1

How can I build a multiple file upload feature similar to that of gmail. I should be able to select multiple files by holding ctrl or select all the files in the folder.

2
  • Can you include html tried at Question? Commented Jul 24, 2016 at 6:10
  • you can use blueimp.github.io/jQuery-File-Upload. Also, for multiple file upload you should have "multiple" attribute in your input type file. Commented Jul 24, 2016 at 6:17

1 Answer 1

1

If you want to go via input method of the form, then there is a simple attribute to select multiple files:

<form>
<input type="file" name="uploadfile" multiple />
</form>

the multiple attribute can help you get your way, i.e. selecting more than one file by using control/shift button, or by mouse...

Hope this helps.. :)

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.