Advertisement
Guest User

Untitled

a guest
Mar 21st, 2019
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. var a0 = document.createElement('a');
  2. a0.setAttribute('download', 'download0.ext');
  3. a0.setAttribute('href', '/someFile.ext');
  4. document.body.appendChild(a0);
  5.  
  6. var a1 = document.createElement('a');
  7. a1.setAttribute('download', 'download1.ext');
  8. a1.setAttribute('href', '/someOtherFile.ext');
  9. document.body.appendChild(a0);
  10.  
  11. a0.click();
  12. a1.click();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement