Dropzone Submit Button on Upload

You need to: Add a button: <button type=”submit” id=”button” class=”btn btn-primary”>Submit</button> Tell Dropzone not to automatically upload the file when you drop it, as it will by default. That’s done with the autoProcessQueue config option: autoProcessQueue: false Since Dropzone will now not auto-upload the files, you need to manually tell it to do that when … Read more