Skip to content

Instantly share code, notes, and snippets.

@PunkChameleon
Created April 1, 2015 13:41
Show Gist options
  • Select an option

  • Save PunkChameleon/a8fde5776852d07f6cba to your computer and use it in GitHub Desktop.

Select an option

Save PunkChameleon/a8fde5776852d07f6cba to your computer and use it in GitHub Desktop.
Make All Pictures on Your Page Pictures of Martyn
var allImages = document.getElementsByTagName("img"),
x,
singleImage;
for (x = 0; x < allImages.length; x++) {
singleImage = allImages[x];
singleImage.src = 'https://media.licdn.com/media/p/3/000/033/0e2/1312368.jpg';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment