How to make a file field that only accept pdf and doc

Vineetha K D picture Vineetha K D · Jul 13, 2015 · Viewed 30.8k times · Source

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

Answer

Ahs N picture Ahs N · Jul 13, 2015

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 ","