Is it possible to have content in a hidden div that doesn't load until it is revealed? I have a page with content that is hidden until the correct link is clicked. This is a tidy solution, aesthetically, but I worry about the page load times. Is there any way to "pause" the div's loading until it is made visible by the link? Thanks a lot.
One way would be using window.setTimeout() if the right link is clicked. That timer would then call document.createElement() to create a new div element. Set this element visibility to hidden first, before adding it to the structure by calling element.appendChild(). Now you have it in the document structure as a child, show it using visibility = "visible". Tell me if this works in your system Hendra.