13

I need to accept only pdf and doc file using input type file.

<input type="file" id="test" name="test" accept="application/msword,text/plain, application/pdf"/>

This is working in windows, but in ubunthu, it only accept pdf file

Panther
  • 3,312
  • 9
  • 27
  • 50
Vineetha K D
  • 211
  • 1
  • 5
  • 13

2 Answers2

35

Change your code to this:

<input type="file" id="test" name="test" accept=".pdf,.doc"/>

The extensions should start with a dot "." and separated by a comma ","

Ahs N
  • 8,233
  • 1
  • 28
  • 33
1

You can try accept attribute for performing this task. Example:- <input type="file" id="example" name="test" accept=".pdf,.docx"/> Just as simple as it is.