Skip to content

Instantly share code, notes, and snippets.

@dannyvassallo
Created August 3, 2015 20:58
Show Gist options
  • Save dannyvassallo/64cca41901776c0a7570 to your computer and use it in GitHub Desktop.
Save dannyvassallo/64cca41901776c0a7570 to your computer and use it in GitHub Desktop.
Scrape Bandsintown for Date, Location, and Links
$('.events-table tr').each(function() {
var date = $(this).find('.date');
var location = $(this).find('.location');
var href = $(this).find('.more');
var link = date.find('a');
var vlink = location.find('a');
var hlink = href.find('a');
var line = link.text() + ' ' + vlink.text() + ' ' + hlink.attr('href');
document.write(line + "<br>");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment