Skip to content

Instantly share code, notes, and snippets.

@flyerhzm
Created February 12, 2011 04:05
Show Gist options
  • Save flyerhzm/823492 to your computer and use it in GitHub Desktop.
Save flyerhzm/823492 to your computer and use it in GitHub Desktop.
var images = document.getElementsByTagName('img');
var image;
for (var i = 0; i < images.length; i++) {
image = images[i];
image.removeAttribute("width");
image.removeAttribute("height");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment