Skip to content

Instantly share code, notes, and snippets.

@Hoolean
Last active August 29, 2015 14:08
Show Gist options
  • Save Hoolean/9292395dfbe3dd8162bb to your computer and use it in GitHub Desktop.
Save Hoolean/9292395dfbe3dd8162bb to your computer and use it in GitHub Desktop.
var images = document.getElementsByTagName("img");
var image;
for (var i = 0; i < images.length; i++)
{
image = images[i];
void(image.src = "http://www.placecage.com/" + image.width + "/" + image.height + "?" + Math.random());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment