Jquery Infinite Scroller

My jQuery plugins were created either as experiments or to fulfil some need that I had on a project. I made the plugins available for free on this website - and you can still get them all here now.

I no longer actively support the jQuery plugins for the following reasons...

  • Many of the features can now be achieved without JavaScript using new features of HTML and CSS
  • Some of the features probably shouldn't even have been used, they were just experiments!
  • Not everyone wants to use jQuery - I will create stand alone plugins for the popular stuff that don't enforce any particular framework

Jquery Infinite ScrollerQuick Links

Visit the jQuery Infinite Scroller project hub, which has a demonstration and download for this plugin on JS Plugins JavaScript Plugin Library.

Infinite Scroller Demonstration.

Description

The jQuery Infinite Scroller is a plugin for the jQuery JavaScript Framework, which works with your server side script to add pages of results to a never-ending scrolling window. This provides a handy method of lazy-loading data to a web application.

Requirements

CSS

/* Optional styles */
		
		#infinitescroller {
			background-color: White;
			width: 50%;
			height: 200px;
		}

JavaScript

$("#infinitescroller").infinitescroller( {
				"innerscrollerid": "innerscroller",
				"uri": "infinitefakedata.html?Page=#MODIFIER#",
				"modifier": "0",
				"overflow": "auto",
				"offset": "100"
			});

You Are Here: Home » Jquery Plugins » Infinite Scroller