Load images after DOM is loaded with Lazy Load Plugin for jQuery
javaScript,
jquery
on May 03, 2010
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();
});
Ways to use it and demos on the project page.



Post new comment