What is the best method to preload images <img> and why? I want to show images on link's hover i can't use images in CSS background so i can't use CSS sprite. but i want to preload all images while page load . which are add as <img>.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
|
|
|
You can use the Image() object in JavaScript to preload the image, then swap it in when you're ready. Here's the HTML:
Then in the JavaScript:
Which will put the image in your cache. When you swap it in, you can call:
|
|||||
|