While working with dropzone.js, I discovered that it offers the option to upload multiple images in a single ajax
request by setting parallelUploads
to define the number of images and uploadMultiple
to true to upload all at once.
parallelUploads // set the number of images in 1 request
uploadMultiple // and set true so it can upload all in 1
However, when I switched to valums-file-uploader, I couldn't find a similar option to upload multiple images in one request. I'm unsure if this plugin supports this feature.
Even after reading the documentation, I have not been able to find a solution to my problem.