I have an HTML form that contains a file input field with multiple file selection and I also have a drag and drop feature that I am working on as well. My question is how to int
I'm not entirely sure how you're doing it, so I'll tell you the way I do it and then try to answer your question.
filesUpload.addEventListener("change", function () {traverseFiles(this.files);}, false);dropArea.addEventListener("drop", function (evt) {traverseFiles(evt.dataTransfer.files);}, false);traverseFiles that you see above is a function that gets a FileList (an array of Files), which are a part of the File API. This function then calls a function uploadFile for each File.uploadFile sends the File asynchronously via ajax (XMLHttpRequest.send(file)).Now to answer your question how to bind the dropped files to an input field: you don't, you just do it the other way. You create an API or a wrapper for uploading files and then if the user drops files, you call this wrapper function. If the user clicks on the field, you again call this wrapper (like I did with traverseFiles).
Makes sense? If it doesn't, tell me which part and I'll edit this answer / expand on it.