Advertisement
lazyy

Automatisch facturen downloaden

Jul 9th, 2023
2,825
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. var invoiceLinks = document.querySelectorAll('.c-orderhistory__invoice a');
  2.  
  3. invoiceLinks.forEach((link, index) => {
  4. setTimeout(() => {
  5. link.click();
  6. }, index * 200);
  7. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement