Answers for "input type file pattern attribute in html"

0

input type file pattern attribute in html

<input type="file" name="my-image" id="image" accept="image/gif, image/jpeg, image/png" />
To select only image files, you can use this accept="image/*"

<input type="file" name="my-image" id="image" accept="image/*" />
Posted by: Guest on July-17-2020

Browse Popular Code Answers by Language