Skip to content

Instantly share code, notes, and snippets.

@fr34kyn01535
Created September 6, 2016 14:51
Show Gist options
  • Save fr34kyn01535/ab0e81ef820d81bbcb3546ccf7dafbbb to your computer and use it in GitHub Desktop.
Save fr34kyn01535/ab0e81ef820d81bbcb3546ccf7dafbbb to your computer and use it in GitHub Desktop.
Open selected paypal invoices
var ids = [];
$(".selected-row").each(function(i,item){
var id = $(item).attr("data-txn-id");
ids.push(id);
var w = window.open("https://history.paypal.com/webscr?cmd=_history-details-from-hub&id="+id);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment