Reputation: 675
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
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:
This does however assume that the files needing to be uploaded are sitting in the user's mailbox.
Upvotes: 1
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