Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

If I have, for instance:

<div style="display:none">
    (The content of this div is a huge QuickTime movie.)
</div>
<div>
    (The content of this div is just lines of text.)
</div>

Will the browser try to start downloading the QT movie in the first div?

I tried searching this site and Google before asking, so if it's been answered before and my Google-Fu is just off today, I sincerely apologize. It seems like a question that would have been asked, but I couldn't find it.

share|improve this question
Loading content isn't the same as rendering. – drudge Jan 21 '11 at 19:22
Or, as another example for clarification, if the first div contained a bunch of pictures, will the browser download all these pictures to it's cache? – Michael Davis Jan 21 '11 at 19:22
You may or may not have noticed the "(for lack of a better term)" in the question itself. I am (or, was) unaware of what the proper term, apparently "loading content", might be. – Michael Davis Jan 21 '11 at 19:23

1 Answer

up vote 4 down vote accepted

Anything with a <div> that is set to display:none is still technically and semantically there. Any content contained within the hidden <div> will be loaded as if it were visible.

share|improve this answer
Awesome. Thanks a bunch. :D – Michael Davis Jan 21 '11 at 19:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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