Drop Zone with Preview

Demo uploads land in a temporary store and are swept after 60 minutes. To keep files, handle FileUploaded — see Single File for the complete save pattern.
Drop Zone with Inline Previews

Dropped image files are shown as thumbnail previews inline before and during upload. Non-image files display a generic file icon.

What you should see: drop images and thumbnails appear immediately, before upload - drag-and-drop plus local preview combined.
Drop images here or click to browse
onSelect: function(files) {
 files.forEach(function(file) {
 if (file.type.indexOf('image/') === 0) {
 var reader = new FileReader();
 reader.onload = function(e) {
 var img = document.createElement('img');
 img.src = e.target.result;
 grid.appendChild(img);
 };
 reader.readAsDataURL(file);
 }
 });
}