Created
July 3, 2014 09:58
-
-
Save tyage/41545c98f1114068f91c to your computer and use it in GitHub Desktop.
This file contains hidden or 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 table = document.querySelectorAll('table')[0]; | |
var links = Array.prototype.map.call(table.querySelectorAll('a'), function(a) {return a.href}); | |
var timer = window.setInterval(function() { | |
document.body.innerHTML = "<img src='"+links[parseInt(Math.random()*links.length)]+"'>"; | |
}, 10000); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment