Skip to content

Instantly share code, notes, and snippets.

@ray-peters
Created October 30, 2015 15:08
Show Gist options
  • Save ray-peters/471abaedae426499931d to your computer and use it in GitHub Desktop.
Save ray-peters/471abaedae426499931d to your computer and use it in GitHub Desktop.
var COUNT = 100,
links = [
"http://www.quranjam.com/Jam/UserImages/whale.jpg",
"http://i633.photobucket.com/albums/uu56/cjay57/Creepy%20Fish/989826_f496.jpg",
"http://i.dailymail.co.uk/i/pix/2012/10/24/article-2222115-15A0CDA8000005DC-378_634x426.jpg",
"http://www.kidson66.com/Scout16.jpg",
"https://thejesterscorner.files.wordpress.com/2012/12/scary-whale.jpeg?w=1200",
"http://media.giphy.com/media/t5CTQBicJcWha/giphy.gif"
];
for ( var i = 0, nextLink; i < COUNT; ++i ) {
nextLink = links[ i % links.length ];
window.open( nextLink );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment