Reputation: 66
Is there any way to change order of file uploads using inputs, or are files just uploaded in the order that the input was added to the DOM.
Upvotes: 1
Views: 260
Reputation: 18796
The HTML5 specification explicitly defines the order of form data as being in tree order when the form is submitted. Assuming you are performing a standard form submission, the only way to modify the order in which data is submitted would be to move the nodes in the DOM.
Upvotes: 1