views:

42

answers:

2

In mobile, the internet is slow. If I have a list of 500 images, this is going to take forever to load. I'd like to load the title of the image in a list, but as the user scrolls down, I want to start loading/downloading the <img> tag. How do I use Javascript/Jquery to do this?

+1  A: 

Try taking a look at this jQuery plugin:

Lazy Loading

Austin Fitzpatrick
Beat me by 40 seconds!
atxryan
A: 

The Lazy Load Plugin for jQuery should do what you need to do. http://www.appelsiini.net/projects/lazyload

atxryan