in a CSS like this :
...
#big-menu {
background: #fff url(../images/big-menu.jpg) no-repeat;
}
#some-menu {
background: #fff url(../images/some-menu.jpg) no-repeat;
}
#some-other-menu {
background: #fff url(../images/some-other-menu.jpg) no-repeat;
}
...
is there a way to delay the loading of #big-menu
's background image, so that it loads after everything else, including all of the images in the HTML, and every other CSS background (the some-menu
and some-other-menu
).
The reason is, big-menu.jpg is very heavy in size, and I want it to be loaded last. After all, it just serves as an eye-candy, and there are other background images that have a better use than that. (such as the ones used in buttons)
Does the order of putting it in CSS or the occurrences of the markup (#big-menu
) in HTML got anything to do with what gets loaded first ? or is there a more reliable way to control it ? javascript (jQuery preferred) is fine.