Skip to content

Instantly share code, notes, and snippets.

@tyage
Created July 3, 2014 09:58
Show Gist options
  • Save tyage/41545c98f1114068f91c to your computer and use it in GitHub Desktop.
Save tyage/41545c98f1114068f91c to your computer and use it in GitHub Desktop.
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