Advertisement
Guest User

Untitled

a guest
Nov 18th, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. jQuery.each(jQuery('a[href^="/profile/billing/transaction/details/"').splice(0,6), function(i,e) {
  2. setTimeout(function() {
  3.  
  4. jQuery.ajax({
  5. url: jQuery(e).attr('href'),
  6. type: 'GET',
  7. success: function(res) {
  8. var downloadUrl = jQuery(res).find('a[href^="/profile/billing/order/details/"]').attr('href');
  9. jQuery.ajax({
  10. url: downloadUrl,
  11. type: 'GET',
  12. success: function(res2) {
  13. var dUrl = jQuery(res2).find('a[href^="/profile/billing/orders/downloadpdf/"]').attr('href');
  14. window.location=dUrl;
  15. }
  16. });
  17. }
  18. });
  19. }, 1000);
  20. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement