I am building an application in HTML5 and I need a file uploader that is able to filter the various files.
Say I got a folder with 1000 files and 5 of those have the .xls format. I want the upload window to filter those files once that file type is selected in the upload window its MIME type chooser.
I know that HTML5 has a way to do this with <input type=file accept=jpg/images> but due to its lack of support (none in IE and Safari) it is just not an option.
I have been looking around the web and found a jQuery file uploader but from what I can see, it is only able to check for file types once you hit the upload button which does not help filter the files available.
Is there any way to do this using Flash or HTML5 technology?
acceptis not really HTML5, but HTML 4.01: w3.org/TR/html401/interact/forms#h-17.4<input type=file accept=jpg/images>"