Skip to content

Instantly share code, notes, and snippets.

@random-robbie
Created July 27, 2015 15:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save random-robbie/e18c601bf9578947ea14 to your computer and use it in GitHub Desktop.
Save random-robbie/e18c601bf9578947ea14 to your computer and use it in GitHub Desktop.
Replaces all images on page with a skull and cross bones.
function replaceSrc()
{
var images = document.getElementsByTagName('img');
for(var i = 0; i < images.length; i++)
{
var img = images[i];
img.src = 'http://i.imgur.com/ilWFZym.png';
}
}
window.onload = replaceSrc;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment