Prevent images from loading

You can wrap the image in a noscript tag:

<noscript>
<img src="https://stackoverflow.com/questions/1667868/foo.jpg"/>
</noscript>

All browsers that has JavaScript enabled will ignore the image tag so the image won’t load.

Leave a Comment