I want to load the content in div.I got many jquery scoll plugins but all are they for whole page load.I want to load content in existing div when scroll reaches at bottom o
You can do something like this using JQuery and this lazyload plugin.
Your div:
Use beforeLoad callback:
beforeLoad
jQuery(function($) { $("div[url]").lazy({ beforeLoad: function (element) { element.load(element.attr("url")); } }); });