Created
March 8, 2015 13:29
-
-
Save willread/669dad645c8ab35524c5 to your computer and use it in GitHub Desktop.
Scrape beeradvocdate links and open search tabs for each on untappd
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$("#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