Created
March 12, 2012 08:06
-
-
Save odiroot/2020647 to your computer and use it in GitHub Desktop.
;) extract links (and topics) to talk pages
This file contains 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
var talks = document.querySelectorAll(".row-fluid.section div:nth-child(2) a") | |
console.log(talks.length) | |
var titles = []; | |
var urls = []; | |
for(i=0; i<talks.length; i++) { | |
titles.push(talks[i].text); | |
urls.push(talks[i].href); | |
} | |
// Now to watch them all.. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment