Multiple Drop Zones

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.
Multiple Independent Drop Zones

Two separate drop zones, each with their own uploader instance and file list. Useful for categorizing uploads (e.g., documents vs. images).

What you should see: two independent zones on one page, each with its own accepted types and its own queue - dropping on one does not affect the other.
Documents
Images
// Zone A - Documents
AjaxUploader.create(elA, {
 uploadUrl: '/ajaxupload.axd/upload',
 allowedExtensions: '.pdf,.docx,.txt,.xlsx',
 dropTarget: zoneA
});

// Zone B - Images
AjaxUploader.create(elB, {
 uploadUrl: '/ajaxupload.axd/upload',
 allowedExtensions: '.jpg,.png,.gif,.webp,.svg',
 dropTarget: zoneB
});