Skip to content

Instantly share code, notes, and snippets.

@tom-lpsd
Created March 4, 2010 03:06
Show Gist options
  • Save tom-lpsd/321356 to your computer and use it in GitHub Desktop.
Save tom-lpsd/321356 to your computer and use it in GitHub Desktop.
var links = document.getElementsByTagName('a');
for (var i=0;i<links.length;i++) {
if (! links[i].href.match(/\.(png|gif|png)$/) ) {
continue;
}
var img = document.createElement('img');
img.src = links[i].href;
links[i].innerHTML = '';
links[i].appendChild(img);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment