Answers for "only pdf file upload in html"

1

allow pdf upload in file input

<input type="file" name="upload" accept="application/pdf,application/vnd.ms-excel" />
Posted by: Guest on May-26-2021
0

input type file allow only pdf

<input type="file" id="test" name="test" accept=".pdf,.doc"/>
Posted by: Guest on November-06-2020
0

how to ensure only pdf files are selected

<input type="file" name="upload" accept="application/pdf,application/vnd.ms-excel" />
Posted by: Guest on August-05-2020

Browse Popular Code Answers by Language