Created
April 26, 2014 17:24
-
-
Save ww24/11325854 to your computer and use it in GitHub Desktop.
任意のファイルの自動ダウンロード
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function download(url, filename) { | |
var a = document.createElement("a"); | |
a.href = url; | |
a.download = filename || url.split("/").slice(-1)[0]; | |
a.click(); | |
} |
Author
ww24
commented
Apr 26, 2014
Google Chrome, Opera で動作確認済。
Firefox では動かず、 Safari では新しいタブが開く。
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment