How do I preload images into dropzone.js
Proper way to do it is to use .emit method provided by on dropzone js to add a file and thumbnail to preload images from the server. See sample code below. Taken from https://github.com/enyo/dropzone/wiki/FAQ#how-to-show-files-already-stored-on-server // Create the mock file: var mockFile = { name: “Filename”, size: 12345 }; // Call the default addedfile event handler … Read more