OLD | NEW |
1 <html> | 1 <html> |
2 <body> | 2 <body> |
3 <a download="foo.exe" href="">link</a> | 3 <a download="foo.exe" href="">link</a> |
4 <script> | 4 <script> |
5 var blob = new Blob(['foo']); | 5 var blob = new Blob(['foo']); |
6 document.querySelector('a[download]').href = webkitURL.createObjectURL(blob); | 6 document.querySelector('a[download]').href = URL.createObjectURL(blob); |
7 | 7 |
8 url = window.location.href | 8 url = window.location.href |
9 document.querySelector('a[download]').download = url.substr(url.indexOf('=') +
1) | 9 document.querySelector('a[download]').download = url.substr(url.indexOf('=') +
1) |
10 document.querySelector('a[download]').click() | 10 document.querySelector('a[download]').click() |
11 </script> | 11 </script> |
12 </body> | 12 </body> |
13 </html> | 13 </html> |
OLD | NEW |