Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 263 Bytes

README.md

File metadata and controls

13 lines (10 loc) · 263 Bytes

jQuery scrollBottom

A plugin that triggers an event when the user reaches the bottom of the page

How to use

$(function() {
    $(window).on('scrollBottom', { offsetY: -100 }, function() {
        console.log('scroll Bottom');
    });
});