Choose

Disable camera function

I have an HTML submit form (only part of it):

<label for="file-upload">
    <div class="button">Choose</div>
</label>
<input id="file-upload" type="file" name="file-upload" />

The code works great on desktops and mobile devices. What I need to do is to disable the "camera snap" function on the Mobile version, it would be ideal if only the file manager appears on the "Select file" button. (screenshot: http://prntscr.com/csm6ji )

Has anyone done something like this and could help me? :)

+4
source share
1 answer

You can try using the accepts attributes:

see here

eg.

<input id="file-upload" type="file" accept="image/*" name="file-upload" />
0
source

Source: https://habr.com/ru/post/1657415/


All Articles