Answers for "input type file accept image only"

11

git ignore file mode changes

git config core.fileMode false
Posted by: Guest on April-30-2020
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
1

input field image accept type

<input type="file" name="image" accept=".png, .jpg, .jpeg" />
<input type="file" name="image" accept="image/png, image/jpeg" />
Posted by: Guest on October-16-2021
1

input type file select only video

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

Code answers related to "input type file accept image only"

Browse Popular Code Answers by Language