Hi,
I found this old tutorial which I think would answer my question, but it is out-of-date for the latest version.
https://github.com/blueimp/jQuery-File-Upload/wiki/How-to-queue-files-and-start-uploads-with-a-button-click
I would like to upload one image file together with some additional form data. It should be uploaded when the form submit button was clicked and not when the user selected a file via the input field automatically. I tried to set "autoUpload: false". But the add function with data.send() is still called immediately. I removed the data.send() but where should I add this function then? When I click on the form submit button the file is not anymore a part of the forme. How to I archive a delayed upload?
1. select a file,
2 .enter more details in other fields
3. click the submit button and upload the file
Cheers