image reload

Collapse
X
 
  • Time
  • Show
Clear All
new posts

  • acoder
    replied
    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>

    Leave a comment:


  • simon2x1
    replied
    yes am talking about using cache for image reload and also
    asking if there is another way i can reload image without using cache
    whether passing the image through css in other not to reload

    Leave a comment:


  • acoder
    replied
    Could you explain the problem in more detail? Do you mean that you want the images to be cached?

    Leave a comment:


  • simon2x1
    started a topic image reload

    image reload

    i do not what my image to reload when every you click on the links
Working...