On Complete Redirect

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.
Redirect After All Uploads Complete

Perform an action after all files have been uploaded. Common use cases include redirecting to a success page, showing a confirmation dialog, or triggering server-side processing.

What you should see: the page navigates after uploads finish - fired from the completion callback, so the redirect happens once the work is actually done.
Drag & drop files here, or paste from clipboard
var uploader = AjaxUploader.getInstance('Uploader1');
uploader.on('complete', function() {
 // Option 1: Show message
 showSuccessMessage();

 // Option 2: Redirect
 // window.location.href = '/Demos/Events/UploadComplete.aspx?files=' + count;

 // Option 3: API call
 // fetch('/api/process', { method: 'POST' });
});