Created
January 6, 2021 14:11
-
-
Save Samda/97302da8145e4af1c3eb0a66db3f980b to your computer and use it in GitHub Desktop.
Input file accepts file types
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- 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