vote up 2 vote down star
1

What JavaScript will remove all image tags?

flag

79% accept rate

5 Answers

vote up 5 vote down check

UPD: sorry, this is a wrong answer, see comments. This is a correct answer.

Something like this:

images = document.getElementsByTagName('img');
for (i = 0; i < images.length; i++) {
    images[i].parentNode.removeChild(images[i]);
}

OR a slight modification of my first attempt to answer this question:

var images = document.getElementsByTagName('img');
var l = images.length;
for (var i = 0; i < l; i++) {
    images[0].parentNode.removeChild(images[0]);
}
link|flag
2  
Recommended improvement: use 'var' to properly declare 'images' and 'i'. – bobbymcr Sep 17 at 8:46
2  
This doesn't work — see explanation below. – bobince Sep 17 at 9:12
As bobince points out, this answer fails to take account of the fact that the NodeList returned by getElementsByTagName is live.. – NickFitz Sep 17 at 9:13
once again the 'accepted correct' answer is wrong here at SO .. Aaarrgh – Scott Evernden Sep 17 at 9:21
-1 for being the wrong answer. It'd be nice if the OP would change his accepted answer so other users don't fall into this trap. – Jamie Dixon Sep 17 at 9:39
show 4 more comments
vote up 3 vote down

With jQuery:

$("img").remove();
link|flag
4  
Do I have to include the whole library for just a simple task? – steven Sep 17 at 8:41
1  
+1 jQuery... no need to reinvent the wheel. :-) – beggs Sep 17 at 8:46
1  
jQuery is really hardly 'a whole library'. it's a 56k script file - not really so 'large'. maybe overkill to do this one remove-images job. if this is really the only thing being done, but otherwise is pretty lightweight to use. i consider jQuery answers to javascript questions totally appropriate. – Scott Evernden Sep 17 at 9:16
1  
besides which see @bobince below. the jQuery answer is correct and the one getting upvoted has a bug – Scott Evernden Sep 17 at 9:19
1  
@NickFitz - how do you know it'll need to be downloaded? (a) The OP may already be using jQuery, in which case this is simpler than the non-jQuery alternatives, and (b) There's always the google-hosted version which users may well have cached. – Dominic Rodger Sep 17 at 9:24
show 2 more comments
vote up 0 vote down

Without using external libraries:

var images = document.getElementsByTagName('img');
for(var i=0; i < images.length; i++) {
    images[i].parentNode.removeChild(images[i]);
}

Or using jquery:

$('img').remove();
link|flag
I was ninja'd ;) – Keeper Sep 17 at 8:48
vote up 12 vote down

The previous answer will only remove every second image.

Remember NodeLists returned by getElementsByTagName or other DOM methods are ‘live’. That means when you remove image 0, images 1–n move down to 0–(n-1); this is a ‘destructive iteration’.

To avoid this, either make a static Array copy of the NodeList (as the jQuery answer is effectively doing), or, faster, just iterate the list backwards:

for (var i= document.images.length; i-->0;)
    document.images[i].parentNode.removeChild(document.images[i]);
link|flag
An answer that works, let's hope steven updates the accepted answer to reflect this. – anonymous Sep 17 at 9:39
vote up 5 vote down

This should work too:

var images = document.getElementsByTagName('img');
while(images.length > 0) {
    images[0].parentNode.removeChild(images[0]);
}
link|flag
Yep, this is a good approach to destructive iteration, when you know you're going to remove every item. – bobince Sep 17 at 9:37
This is the best answer, because the while syntax combined with the live NodeList is more clear. – eyelidlessness Sep 17 at 17:49

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.