Created
September 25, 2012 16:23
-
-
Save jackilyn/3782921 to your computer and use it in GitHub Desktop.
iOS 6 File Uploads
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- To let users take a picture from your web app, you’d use a file input tag something like this: --> | |
<input type="file" accept="image/*" capture="camera"> | |
<!-- others --> | |
<input type="file" accept="video/*" capture="camcorder"> | |
<input type="file" accept="audio/*" capture="microphone"> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment