vote up 5 vote down star
1

Will an image load if it has its CSS set so that visibility is hidden?

flag

4 Answers

vote up 14 vote down

Yes, it will still be loaded and held within the DOM. Then you can show it quickly with JS!

link|flag
vote up 3 vote down

Yes - I have used this to preload images that will be shown with Javascript.

You can verify this experimentally:

  • Create two relatively large images, a.jpg and b.jpg
  • Place an image on a page, with source of a.jpg
  • Write some javascript to change the image's source to b.jpg when a link is clicked (for instance, a thumbnail of b.jpg)
  • Load the page. Notice that when you click the link, you have to wait for b.jpg to load.
  • Now edit the page so that b.jpg is included on the page in the first place, but has a CSS attribute of visibility: hidden
  • Reload the page with Ctrl+F5. When it is finished, click the link again.
  • Notice that b.jpg loads much faster now. That's because it was preloaded.
  • link|flag
    Err. Why don't you simply setup a little html document with a non-existent image and then watch the server's log? – Manni Feb 23 at 17:01
    becasue you may not have your own server. Firebug however can also thell you this in the NET panel. – Pim Jager Feb 24 at 20:19
    vote up 0 vote down

    Different browsers may behave differently.

    link|flag
    vote up 1 vote down

    This depends entirely upon the browser and its environment (e.g., low memory situations such as mobile phones).

    link|flag

    Your Answer

    Get an OpenID
    or

    Not the answer you're looking for? Browse other questions tagged or ask your own question.