Skip to content

Instantly share code, notes, and snippets.

@tuki0918
Forked from ww24/download.js
Created April 26, 2014 18:59
Show Gist options
  • Save tuki0918/11328100 to your computer and use it in GitHub Desktop.
Save tuki0918/11328100 to your computer and use it in GitHub Desktop.
function download(url, filename) {
var a = document.createElement("a");
a.href = url;
a.download = filename || url.split("/").slice(-1)[0];
a.click();
}
@tuki0918
Copy link
Author

o-

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment