Skip to content

Instantly share code, notes, and snippets.

@Samda
Created January 6, 2021 14:11
Show Gist options
  • Save Samda/97302da8145e4af1c3eb0a66db3f980b to your computer and use it in GitHub Desktop.
Save Samda/97302da8145e4af1c3eb0a66db3f980b to your computer and use it in GitHub Desktop.
Input file accepts file types
<!-- CSV only -->
<input type="file" accept=".csv" />
<!-- only CSV and XLS XLSX -->
<input id="fileSelect" type="file" accept=".csv, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/vnd.ms-excel" />
<!-- only excel 2007 and up -->
<input type="file" accept="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet" />
<!-- Only pdf -->
<input type="file" accept=".pdf" />
<!-- Audio only -->
<input type="file" accept="audio/*" />
<!-- only IMage type -->
<input type="file" accept="image/*" />
<!-- Video Only -->
<input type="file" accept="video/*" />
<!-- txt only -->
<input type="file" accept="text/plain" />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment