Skip to content

Instantly share code, notes, and snippets.

@theMagicalKarp
Created August 2, 2013 14:21
Show Gist options
  • Save theMagicalKarp/6140231 to your computer and use it in GitHub Desktop.
Save theMagicalKarp/6140231 to your computer and use it in GitHub Desktop.
A cute script to replace every image on a webpage with a kitten.
var images = document.getElementsByTagName("img");
for (var i = 0; i < images.length; i++) {
var image = images[i];
// images courtesy of placekitten.com
image.src = 'http://placekitten.com/g/' + image.width + '/' + image.height;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment