Goutham
Goutham

Reputation: 27

how to select multiple file using jquery.MultiFile.js plugin? selecting multiple file a a time with Individual close buttons?

How to select multiple files at a time with individual close buttons?

using jquery.MultiFile.js and jquery.MetaData.js

Thanks in advance.

Upvotes: 0

Views: 782

Answers (1)

Jatin Bhole
Jatin Bhole

Reputation: 186

Use the accept if you only want files of a certain extension to be selected Separate valid extensions with a "|", like this: "jpg|gif|png". Server-side validation is always required.

<input type="file" class="multi" accept="gif|jpg" maxsize="20000" maxfile="5000" />

// limit total pay load size, for total size of all files

maxsize

// limit individual file size

maxfile

// size options are accepted in kylobytes

Upvotes: 1

Related Questions