that's the code i used to upload my file dropped when i click on the button submit of my form.
My div is droppable, but when i click on the button, nothing append... I don't know if there is a problem with a document ready or somehting..
Dropzone.autoDiscover = false;
jQuery(document).ready(function() {
var myDropzone = new Dropzone(element, {
url: "/upload.php",
autoProcessQueue: false,
});
$('#imgsubbutt').click(function(){
myDropzone.processQueue();
});
});