Skip to content

Instantly share code, notes, and snippets.

@dance2die
Created June 25, 2017 14:10
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 dance2die/82ecc246b6def6233d94bd9acb5bad2b to your computer and use it in GitHub Desktop.
Save dance2die/82ecc246b6def6233d94bd9acb5bad2b to your computer and use it in GitHub Desktop.
Open Reddit Links using Javascript
// Get reddit links
var divs = document.querySelectorAll('a[data-event-action="title"]');
// Open all links
for (i = 0; i < divs.length; i++) { window.open(divs[i].href); };
// Move to next page
window.location.href= document.querySelector('.next-button a').href;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment