I am using Dropzone. I\'d like to prevent the uploading of a file which already exists as thumbnail in Dropzone \"panel\". With uploading I mean not to allow a file with the
The following solution helped me:
this.on('addedfile', function(file) { setTimeout(function() { $(".dz-file-preview").remove(); // removes all files except images }, 3000); });