i do not what my image to reload when every you click on the links
image reload
Collapse
X
-
I think you mean image preload. Browsers will usually cache images for later reuse if possible. You can use CSS for this by preloading images at the bottom of the page and keeping them hidden:
Code:div#preload { display:none; }Code:<div id="preload"> <img src="http://bytes.com/topic/html-css/answers/..."> <img src="http://bytes.com/topic/html-css/answers/..."> </div>
Comment
Comment