Skip to content

Instantly share code, notes, and snippets.

@bradchristie-velir
Created July 7, 2021 14:59
Show Gist options
  • Save bradchristie-velir/33ae9cdbc0703c236da0a764c75f1bb3 to your computer and use it in GitHub Desktop.
Save bradchristie-velir/33ae9cdbc0703c236da0a764c75f1bb3 to your computer and use it in GitHub Desktop.
Multi-File Download
// Borrowed from Microsoft's download page
function DownloadURL(n, t) {
if ((jQuery.browser || navigator.userAgent.toLowerCase().indexOf("trident") > 0) && t != "mainDownloadNonBundle")
window.open(n, "_blank", "toolbar=0,location=no,directories=0,status=0,scrollbars=no,resizable=0,width=0,height=1,top=0,left=0");
else {
var i;
i = document.getElementById(t);
i === null && (i = document.createElement("iframe"),
i.id = t,
i.style.visibility = "hidden",
i.style.display = "none",
document.body.appendChild(i));
i.src = n
}
}
DownloadURL("http://contoso.com/file-x86.exe", "multipleFile0");
DownloadURL("http://contoso.com/file-x64.exe", "multipleFile1");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment