Uploadfive(html5) - Internet Explorer 9 not working

1.2k views Asked by At

I have integrated Uploadfive(html5) in my project and its working Good in Firefox, Chrome and Safari. But, it fails to work in IE 9.

Let me know the solution/patch to include in the project, inorder to make it work in IE 9 as well.

Waiting for the Successful solution.

1

There are 1 answers

2
iCollect.it Ltd On

UploadiFive is for HTML 5 browsers that support the HTML 5 file API.

IE 9 does not support the HTML 5 File API. The first version of IE that does is IE 10.

Use the older (and free) uploadify instead on older browsers. It uses a flash plugin to do the same job.

Unfortunately the API of uploadify and uploadifive are very slightly different so you need two lots of code (we wound up wrapping both in our own JQuery plugin which chooses between them, based on browser capabilities, and modifies a single set of options & HTML templates to suit. Worth doing if you have loads of sites needing this).

You can include both uploadify and uploadifive in the same page, just choose between them with the following test:

   if (window.FormData !== undefined) 
   { 
        // use uploadifive 
   } 
   else 
   {
        // use uploadify 
   }