Your download is starting…
You will be redirected in 2 seconds.
// Function to initiate download function startDownload(url) { const a = document.createElement('a'); a.href = url; a.download = url.split('/').pop(); document.body.appendChild(a); a.click(); document.body.removeChild(a); }
// Start the download startDownload(fileUrl);
// Redirect after 2 seconds
setTimeout(() => {
window.location.href = redirectUrl;
}, 2000);