Allow file input to accept only image or only doc and pdf file
For Image upload
<input type="file" accept="image/x-png,image/jpg,image/jpeg">
For Image with Gifs
<input type="file" accept="image/x-png,image/jpg,image/jpeg,image/gif">
For doc, docx and pdf files
<input type="file" accept="application/pdf, application/msword, application/vnd.openxmlformats-officedocument.wordprocessingml.document">
For Presentation Upload
<input type="file" accept="application/pdf,application/vnd.ms-powerpoint,application/vnd.openxmlformats-officedocument.presentationml.slideshow,application/vnd.openxmlformats-officedocument.presentationml.presentation"/>
For Excel file upload
<input type="file" accept="application/vnd.ms-excel">
Comments
Post a Comment