// Lazy Load is delays loading of images in long web pages. Images outside of viewport are not loaded until user scrolls to them.
if(typeof $("img.lazy").lazyload == 'function')
{
$("img.lazy").lazyload({
threshold: 200,
effect : "fadeIn",
failure_limit : 10
});
}
0 Comment(s)