I'm trying to take this file input, which is a multi-file input.
<input name="userfile[]" type="file" multiple=""/>
And after my files are selected, i want to put them into separate individual file inputs via javascript. Is this possible?
I'm trying to take this file input, which is a multi-file input.
<input name="userfile[]" type="file" multiple=""/>
And after my files are selected, i want to put them into separate individual file inputs via javascript. Is this possible?
In practice, no. Every modern browser will prevent you from programmatically populating a file input.