UNPKG

jquery-infinite-scroll-helper

Version:

A lightweight implementation of the infinite scroll mechanic. By providing two essential callbacks, loadMore and doneLoading, the jQuery Infinite Scroll Helper plugin makes it a breeze to add infinite scrolling functionality to your page.

19 lines 704 B
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>jQuery Infinite Scroll Helper Plugin Tests</title> <link rel="stylesheet" href="../node_modules/qunitjs/qunit/qunit.css"> <script src="../node_modules/qunitjs/qunit/qunit.js"></script> </head> <body> <div id="qunit"></div> <div id="qunit-fixture"></div> <script src="../lib/jquery-1.8.2.min.js"></script> <script src="../jquery.infinite-scroll-helper.js"></script> <script src="tests.js"></script> </body> </html>