What JavaScript will remove all image tags?
This should work too:
var images = document.getElementsByTagName('img'); while(images.length > 0) { images[0].parentNode.removeChild(images[0]); }