0

I am trying to upload multiple files a t a time and used the following html code.

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

It is working well in all other browsers except IE.I am using version 9 and above.If i want to make it work what are the changes required.Suggest please.

Thanks in advance.

1 Answer 1

1
<input type="file" name="file" multiple/>

The multiple attribute is new in HTML5 (Reference)

Here is a reference for multiple

Versions supporting `multiple` attribute

Chrome    Edge   Firefox   Opera   Safari
6.0       10.0   3.6       11.0    5.0

Why it doesn't work with Internet Explorer ?

Uploading multiple files is a specific part of HTML5 that none of the Internet Explorers support. Here is a reference to it. Though , IE 10.0 has started supporting it.


I found some related resources here and here


According to all above statistics , I might like to suggest you to read the second post of this which uses certain alternatives of multiple attribute :

If you can't or don't want to use multiple INPUT TYPE=FILE controls, you must use Flash or Silverlight or a custom ActiveX control

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

2 Comments

Thank u @Master Daark Night
Welcome @SRI , hope it helps you , and if it helps you then kindly accept my answer :)

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.