Skip to content

Instantly share code, notes, and snippets.

@james-s-tayler
Created July 23, 2016 12:45
Show Gist options
  • Save james-s-tayler/f06bc43a392e2b3017347134033f9338 to your computer and use it in GitHub Desktop.
Save james-s-tayler/f06bc43a392e2b3017347134033f9338 to your computer and use it in GitHub Desktop.
$('.biz-listing-large').each(function(index, listItem) {
var shopName = $(listItem).find('.biz-name').text().trim();
var address = $(listItem).find('address').text().trim().replace(/Auckland/g,", Auckland");
console.log(shopName + "," + address);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment