If anyone else needs to use Dropzone with jQuery 3, especially if you need to reference jQuery methods in Dropzone callbacks, this worked for me:
// Do this outside of jQuery Dropzone.autoDiscover = false; // Start jQuery stuff $(function() { // Call Dropzone manually $("#dropzone").dropzone({ paramName: "image", maxFilesize: 8, // MB queuecomplete: function() { // Some more jQuery stuff inside Dropzone callback $("#some_id").somejQueryMethod(); } }); });
MrCarrot
source share