Answers for "accept only image and pdf input file"

14

set git editor to vim

git config --global core.editor "vim"
Posted by: Guest on May-27-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
0

only accept image file input

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

Code answers related to "accept only image and pdf input file"

Browse Popular Code Answers by Language