Skip to content

Instantly share code, notes, and snippets.

@luisfc
Last active August 25, 2022 21:03
Show Gist options
  • Save luisfc/5f689803c309a2717763d28045d96061 to your computer and use it in GitHub Desktop.
Save luisfc/5f689803c309a2717763d28045d96061 to your computer and use it in GitHub Desktop.
Remove all images with JavaScript
//#1
var images = document.getElementsByTagName('img');
var l = images.length;
for (var i = 0; i < l; i++) {
images[0].parentNode.removeChild(images[0]);
}
//#2
for (var i= document.images.length; i-->0;)
document.images[i].parentNode.removeChild(document.images[i]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment