Skip to content

Instantly share code, notes, and snippets.

@skozz

skozz/jsfa.js Secret

Created September 14, 2014 21:53
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 skozz/38b6528af564d37d0d61 to your computer and use it in GitHub Desktop.
Save skozz/38b6528af564d37d0d61 to your computer and use it in GitHub Desktop.
JS foroafeitado.com
var images = document.getElementsByTagName('img');
for(i=0; i<images.length; i++){
if(images[i].src === 'http://www.foroafeitado.com/foro/images/statusicon/forum_old.gif'){
images[i].src = 'https://imagizer.imageshack.us/v2/40x40q90/746/ZErVMr.png';
} else if (images[i].src === 'http://www.foroafeitado.com/foro/images/statusicon/forum_new.gif') {
images[i].src = 'https://imagizer.imageshack.us/v2/40x40q90/674/k8Co31.png';
} else if (images[i].src === 'http://www.foroafeitado.com/foro/images/vbseo_skin_1.0/logo.gif') {
images[i].src = 'https://imagizer.imageshack.us/v2/128x128q90/631/7HdBDI.png';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment