Advertisement
Guest User

Untitled

a guest
Oct 26th, 2016
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. var data = [];
  2. jQuery('#amazonListingViewAmazonGrid126_table > tbody > tr').each(function() {
  3. var $this = jQuery(this);
  4. var sku = $this.find('td:nth-child(4)').text().trim();
  5. var asin = $this.find('td:nth-child(5)').text().trim();
  6. data.push(sku + ',' + asin);
  7. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement