Skip to content

Instantly share code, notes, and snippets.

@deadcoder0904
Last active January 14, 2017 19:55
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 deadcoder0904/3d6f602b1034dfc86a80f89707040850 to your computer and use it in GitHub Desktop.
Save deadcoder0904/3d6f602b1034dfc86a80f89707040850 to your computer and use it in GitHub Desktop.
Download ScoopWhoop Pictorial Quotes using Console
var figure = document.querySelectorAll('.sw-media');
for (let i of figure) {
console.log(JSON.stringify(i.children[0].src));
}
var img = document.querySelectorAll('.sw-para>img');
for (let i of img) {
console.log(JSON.stringify(i.src));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment