I have successful upload code that works perfect using the AJAX when I select each file to upload from the dialog. So each upload has its own form and input file (button to upload) as seen below. The current code uploads files sequentially as the user can select more than one photo but not together & I use queuing algorithm with setTimeout in Javascript to check if the first upload finishes to start the second upload, third, and so on.
<form id="form1">
<input type="file" id="userfile1" name="userfile[]" multiple/>
</form>
<form id="form2">
<input type="file" id="userfile2" name="userfile[]" multiple/>
</form>
.
.
.
The problem now, when I select multiple images to upload (let's say two images together using Ctrl), using the first input file, I get them in this array:
document.getElementById('userfile1').files;
So now, how can I assign the second image selected to the second input file
userfile2
Because I want to resume the upload as before? It is not working with me and I read that there is security concerns to update the input file, but I need to assign what the user selected, not a path.
I don't want to use the FromData with AJAX as that will lead to change all my code and also it is not compatible with all browsers like my code.
Thanks a lot for your help!