Load images after DOM is loaded with Lazy Load Plugin for jQuery
As the title say, this plugin loads images after the DOM is ready.
Load the jquery and the plugin.
The simplest use is to put $("img").lazyload(); inside document ready event.
$(document).ready(function() {
$("img").lazyload();
});
Read more »


