daisy
daisy

Reputation: 675

HTML - file upload form does not work with iPad

Uploading files on the IPad is not possible because "Choose file" is grayed out. Is there a workaround to upload files in a iPad browser. I'm using the current chrome for iPad.

my upload code:

    document.getElementById("files").addEventListener("change", function ( e ){...});

Upvotes: 0

Views: 3034

Answers (2)

StewartR
StewartR

Reputation: 141

You can use the upload file dialog since iOS6, but it only provides access to photos. The best methods of getting a file upload working to your website are:

  1. Create an app that can take file attachments from email and then push them to your website
  2. Setup a special email address users can forward attachments to which then puts those into their account (this method is called piping)

This does however assume that the files needing to be uploaded are sitting in the user's mailbox.

Upvotes: 1

Beko1997
Beko1997

Reputation: 128

I don't think there is a workaround to upload files, it is simply not builded in the software... I've never seen a site were it was working. (only in apps)

https://discussions.apple.com/thread/3863546?start=0&tstart=0 is saying the same thing...

Upvotes: 1

Related Questions