is there a script that will put the images i specify into the surfers cache, as i use the same images on every page of my site and they are the only images. This will greatly increase the download times.
Thankyou for your help.
matthew Taylor
Printable View
is there a script that will put the images i specify into the surfers cache, as i use the same images on every page of my site and they are the only images. This will greatly increase the download times.
Thankyou for your help.
matthew Taylor
Images are automatically put in the cache. If you want to specifically put images in the cache that you aren't using at the moment, you can either use CSS or set the image dimensions to 1x1.
<img src="..." width="1" height="1" />
or
<span style="display:none"><img src="..." width="400" height="350" /></span>
thankyou for that!
Matthew Taylor