What would be a good way to show hidden content with javascript, without having the image elements <img src="myimage.jpg">
of the hidden content load their images in google chrome or any other browsers until the content is actually shown?
hiding the content with the css rule display: none
will not prevent the images from loading, and I would like to avoid using ajax calls.