I have following code which accepts only image and pdf files, but if I change Format from file selection window(i think it's provided by Chrome itself) Custom files to All files, it's accepting all file formats including zip folders.
<button type="button" class="btn-submit upload for-hover smooth-hover"
data-prod-idx="{{index}}" data-prod-id="{{prod.ProductId}}"
ng-click="vm.onUpload($event, index, prod.ProductId)"
ngf-select="vm.uploadAttachments($event, $files, $invalidFiles)"
multiple accept="application/pdf, image/*"
ngf-capture="'camera'"
ngf-max-size="5MB">Upload Documents
</button>
How to stop uploading files except for image and pdf?(No JQuery please, for all browsers)
I have tried using different values in accept, but that's not helping me.
Use the file.type property of each File object to determine if it is an inappropriate type. In the
uploadAttachments
function, skip the upload if the type is inappropriate.The DEMO