I\'m trying to implement Dropzone on my site. I want to listen for the \"success\" event and then take the server response and add some info from it to a form on the same pa
I had have some problems with dropzone, but i found this solution:
new Dropzone("#myDropzone", { maxFilesize: 2, // MB init: function() { this.on("success", function(file, responseText) { console.log(responseText); }); } });