Skip to content

Instantly share code, notes, and snippets.

@odiroot
Created March 12, 2012 08:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save odiroot/2020647 to your computer and use it in GitHub Desktop.
Save odiroot/2020647 to your computer and use it in GitHub Desktop.
;) extract links (and topics) to talk pages
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