Skip to content

Instantly share code, notes, and snippets.

@willread
Created March 8, 2015 13:29
Show Gist options
  • Save willread/669dad645c8ab35524c5 to your computer and use it in GitHub Desktop.
Save willread/669dad645c8ab35524c5 to your computer and use it in GitHub Desktop.
Scrape beeradvocdate links and open search tabs for each on untappd
$("#ba-content > table:nth-child(3) > tbody > tr > td:nth-child(3) > a:nth-child(1) > b").each(function(i, beer){
setTimeout(function() {
window.open("https://untappd.com/search?q=" + $(beer).text());
}, i * 1000)
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment