Skip to content

Instantly share code, notes, and snippets.

@nrm176
Created May 13, 2019 06:58
Show Gist options
  • Save nrm176/773bc083232b4f749f7a7683e153ac97 to your computer and use it in GitHub Desktop.
Save nrm176/773bc083232b4f749f7a7683e153ac97 to your computer and use it in GitHub Desktop.
Array.from(document.querySelectorAll('div.m-block.newpresSearchResults tr')).map((e) => {
return Array.from(e.querySelectorAll('li a')).map((e) => {
var obj = {}
obj[e.textContent] = e.href;
return obj
})
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment