Lazy Loading

Lazy loading is a great feature in jQuery that ebales you to load only the content that is needed. To use this, you should incorporate the jquery.lazyload.js script file as shown below: Next, you can use the lazyload() method as shown below: $(“imageObject”).lazyload();

Read More