rancho
rancho

Reputation: 66

Is there a way to change order in which files are uploaded using inputs

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

Answers (1)

C Snover
C Snover

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

Related Questions