Skip to content

Instantly share code, notes, and snippets.

@kjgarza
Created July 22, 2012 15:29
Show Gist options
  • Save kjgarza/3159992 to your computer and use it in GitHub Desktop.
Save kjgarza/3159992 to your computer and use it in GitHub Desktop.
Google scholar obtain all titles from search
var publ = document.querySelectorAll(".gs_rt");
var dl =[];
for(i=0; i<publ.length; i++) {
var n = publ[i].textContent;
dl[i] = n;
}
console.log(dl);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment