I\'ve successfully integrated dropzone.js inside an existing form. This form posts the attachments and other inputs like checkboxes, etc.
When I submit the form wit
Depending on your situation you could simply submit the form:
if (myDropzone.getQueuedFiles().length > 0) { myDropzone.processQueue(); } else { $("#my_form").submit(); }