Answers for "input file accept image only"

21

accept only image files upload html

<input type="file" name="myImage" accept="image/x-png,image/gif,image/jpeg" />
Posted by: Guest on February-19-2020
0

only accept image file input

<input type="file" name="myImage" accept="image/*" />
Posted by: Guest on February-14-2021
0

html make file input only images

<input type="file" accept="image/*">
Posted by: Guest on July-08-2021
7

file input file types

<input type="file" accept=".gif,.jpg,.jpeg,.png,.doc,.docx">
Posted by: Guest on May-05-2020
1

accept vedio pdf files upload html

<input type="file" accept=" video/*" />
Posted by: Guest on February-19-2020

Code answers related to "input file accept image only"

Browse Popular Code Answers by Language