Answers for "html upload image accept only few types"

24

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
4

input type file accept only images

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

html upload image accept only few types

<input type="file" accept=".png, .jpg" />
Posted by: Guest on February-04-2022

Code answers related to "html upload image accept only few types"

Browse Popular Code Answers by Language