Answers for "input type file only accept image and give alert with wrong file upload"

4

git change default editor

git config --global core.editor vim
Posted by: Guest on February-02-2021
5

set git editor

$ git config --global core.editor vim
Posted by: Guest on June-08-2020
0

git set editor

git config --global core.editor nvim
Posted by: Guest on July-16-2021
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

Code answers related to "input type file only accept image and give alert with wrong file upload"

Browse Popular Code Answers by Language