Advertisement
Guest User

Untitled

a guest
Jan 3rd, 2020
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var links = [
  2.   '/static/uploads/fth/FthAgg.xlsx',
  3.   '/static/uploads/fth/FthCon.xlsx'
  4. ];
  5.  
  6. function downloadAll(urls) {
  7.   var link = document.createElement('a');
  8.  
  9.   link.setAttribute('download', null);
  10.   link.style.display = 'none';
  11.  
  12.   document.body.appendChild(link);
  13.  
  14.   for (var i = 0; i < urls.length; i++) {
  15.     link.setAttribute('href', urls[i]);
  16.     link.click();
  17.   }
  18.  
  19.   document.body.removeChild(link);
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement