I\'m using blueimp/jQuery-File-Upload to allow users to upload attachments when creating a inquiry on my site.
I need to extend the current functionality to add a au
It is not possible to programmatically add a File object to FileList object at <input type="file"> element. You can create a file as data URI; Blob or File; or FormData object, use POST to send file object to server.
File
FileList
<input type="file">
data URI
Blob
FormData
POST