Topic: How to dynamically change multipart_params?
Is it possible to dynamically change multipart_params?
I'm looking for something like:
$('#uploader').settings('multipart_params', { 'var1': 'val1', 'var2': 'val2' });
I need to change the multipart_params AFTER plupload has been initialized.
Is there other ways to dynamically pass variables to the url script (eg. upload.php)? That way I could modify the form data before submitting it. I've tried putting hidden fields in the form, but that doesn't seem to work.
Any help is highly appreciated!