is there any way that html element file
<input name="file1" type="file" style="width:300px">
only accept PDF files and when we browse its only show PDF files...
Thanks
is there any way that html element file
<input name="file1" type="file" style="width:300px">
only accept PDF files and when we browse its only show PDF files...
Thanks
The accept attribute value is a string that defines the file types the file input should accept. You can use the accept attribute like:
<input name="file1" type="file" accept="application/pdf">
or you can specify a unique file type specifier:
<input name="file1" type="file" accept=".pdf">