Answers for "input type file only images"

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
1

input type file select only video

accept="video/mp4,video/x-m4v,video/*"
Posted by: Guest on October-14-2020
0

html make file input only images

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

Code answers related to "input type file only images"

Browse Popular Code Answers by Language