Is there any way to stop an tag loading its image by just using CSS? I would like to avoid using JavaScript.
This doesn\'t seem to work (Firebu
You then set them all to be
.img{visibility:hidden;}
this will prevent them from making an http request but still preserves their size and spacing in the document preventing any redraws.
then when you want to show your hidden images (for instance the ones in view) you add a class to the surrounding html element and in your css tell this to be
.show .img {visibility:visible;}
That should do it, Holmes.