Answers for "in input tag only accepts picture"

14

input type file accept only images

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

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

Browse Popular Code Answers by Language