Created
January 27, 2016 18:47
-
-
Save alvarogarcia7/445a987772d2e8d636a3 to your computer and use it in GitHub Desktop.
Choose the next item in pocket (getPocket.com)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var items = $(".item_link"); | |
var size = items.size(); | |
var nextLinkIndex = Math.floor((Math.random() * size)); | |
var nextLink = items[nextLinkIndex]; | |
//enable pop-ups if you have links to twitter or similar | |
nextLink.click(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment