Using plupload jquery queue plugin as in this example, how can I submit the form on upload complete? I attempted to add a <input type="submit" />
button, and click this button without first clicking the Start upload
. This triggers the uploader.start()
correctly, and then $('form').submit()
- however the $_POST data only contains: 'uploader_count' => string '0' (length=1)
. If I first click the Start upload
button however, the proper POST vars are populated.
How can I trigger .submit()
and be sure the correct file upload post parameters are present (E.G. $_POST['uploader_count']
) ?