Quote:
Originally Posted by bbwebmaster
Is there any possibility to make make 1 or 2 images loaded before the rest of images on a webpage without using Javascript preload?
Thx in advance for any suggestions.
|
You might be able to do this with CSS by placing the <img> code for these images high up in the document, but with a visibility: hidden; property. That way they'll load first, but they won't appear when they're first loaded. The images will be loaded/cached by the time it reaches the <img> code of these images that are to be visible.