we know lazy load plugin enable us to download images on demand which is out of visible area of page and when user scroll down and image place holders are getting visible then lazy load plugin download images on demand.

the problem is lazy load plugin work for all the images but i want it to work for those images which are in specific div. suppose my div is in bottom of the page and that div has many image but div will not have any scroll bar. i want that when user scroll down to close to specific div and div comes to visible area of the page then images in that div view will be started downloading and visible.

how could i achieve it by lazy load plugin which will download images only for specific div without scroll bar.

let me know thanks.

link|improve this question

Lazyload plugin works on those images which you yourself bind it to. Check jQuery documentation about selectors: api.jquery.com/category/selectors – Mika Tuupola Dec 14 '11 at 14:43
feedback

1 Answer

up vote 1 down vote accepted

Say your HTML is:

<div id="gallery">
    <img src="blah.jpg" />
    <img src="blah2.jpg" />
    <img src="blah3.jpg" />
    ...
</div>

You simply do this:

$("#gallery img").lazyload();
link|improve this answer
thanks but i have one confusion that does it load image on demand with in only gallery div or does it effect other div may have images? – Keith Costa Dec 14 '11 at 13:06
This will only affect the div that has an id of "gallery". – Jason T Featheringham Dec 14 '11 at 13:07
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.