javascript - Do fancy box images in links load if not clicked? -
i use fancybox on site show secondary images if wanted user. images in question reside inside fancybox links, so:
<a class="fancybox" title="click see more detail" href="media/more-detailed-image.jpg"><img src="media/image-name.jpg" alt="etc"></a>
do browsers load fancybox images if they're not clicked user?
no. afaik fancy box , similar scripts set css display
property none
in turns prevents element being rendered.
so images not fetched browser unless become visible.
refer this article please.
Comments
Post a Comment