Skip to content

Instantly share code, notes, and snippets.

@IOZ
Created May 25, 2015 12:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save IOZ/25a7f705918511c345b3 to your computer and use it in GitHub Desktop.
Save IOZ/25a7f705918511c345b3 to your computer and use it in GitHub Desktop.
Auto downloading files via js
function downloadURI(uri, name)
{
var link = document.createElement("a");
link.download = name;
link.href = uri;
link.click();
}
var arr = []; // array with files
var link = 'url';
for(var i = 0; i<arr.length; i++) {
downloadURI(link+arr[i]+'.gif', arr[i]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment