Skip to content

Instantly share code, notes, and snippets.

@ww24
Created April 26, 2014 17:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ww24/11325854 to your computer and use it in GitHub Desktop.
Save ww24/11325854 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();
}
@ww24
Copy link
Author

ww24 commented Apr 26, 2014

// usage
download("http://code.jquery.com/jquery-2.1.0.min.js");

// set filename
download("http://code.jquery.com/jquery-2.1.0.min.js", "jquery.js");

@ww24
Copy link
Author

ww24 commented Sep 3, 2014

Google Chrome, Opera で動作確認済。
Firefox では動かず、 Safari では新しいタブが開く。

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