Is there a way to send an extra data with $('#id').uploadifive('upload');

155 Views Asked by At

I'm trying to send extra data when I'm doing upload. The reason of that is because I need to add some photos to an object, that doesn't exist on that stage. first I have to add that object to my db to get an id and then to call somehow a js function which has to get that id and then to do upload.

1

There are 1 best solutions below

1
On

Best bet is to just put the data you want to send along with the request into the URL as a query parameter as a key-value pair. i.e. http://myurl.com/postIt.php?data=3400

Update: See the uploadify documentation for the onUploadSuccess event and then inside that event you will have the information you need to submit the second ajax request that completes your two-part process.

Note: I removed the jQuery Deferred documentation reference as it is likely not needed given the events that are available in the uploadify API.