Advertisement
stuppid_bot

Untitled

Aug 26th, 2014
287
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function download(url, name) {
  2.     name = name || 'file'
  3.     var link = document.createElement('a');
  4.     link.setAttribute('download', name);
  5.     link.href = url;
  6.     link.onclick = function () {
  7.         document.body.removeChild(this);
  8.     };
  9.     link.style.display = 'none';  
  10.     document.body.appendChild(link);
  11.     link.click();
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement