Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

jQuery file upload allow only doc files

I am using the JQuery File Upload plugin.

I want to upload only files with the extensions like .doc, .docx, .pdf. So can someone tell me how to allow the plugin only to upload .doc, .docx, .pdf files. Any help and suggestions will be really appreciable. Thanks

like image 320
NewUser Avatar asked Apr 30 '26 01:04

NewUser


1 Answers

You can try to use acceptFileTypes option like,

var acceptFileTypes =/^application\/(pdf|msword)$|^doc$|^docx$/i;

Read more about options

like image 56
Rohan Kumar Avatar answered May 01 '26 15:05

Rohan Kumar



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!