lazyload Plugin for jQuery | Zepto

This project is forked from tuupola/jquery_lazyload and add features below:
* Many Details for improve performance;
* IE6/7 support;
* Available with Zepto;
* `vertical_only` \ `minimum_interval` \ `use_minimum_interval_in_ios` \ `no_fake_img_loader` options.

More information on jieyou/lazyload.

Plugin enabled with gazillion images

When you have hundreds of images it is best to use James Padolseys scrollstop event. Compate this to page where plugin is disabled or page with larger images.

Note: The scrollstop event is only available with jQuery (not available with Zepto).

<script src="jquery.scrollstop.js" type="text/javascript"></script> 
<img class="lazy" data-original="img/example.jpg" width="80" height="120" alt="">
$("img.lazy").lazyload({
  event: "scrollstop"
});