Skip to content

Instantly share code, notes, and snippets.

View phuonglop12a2's full-sized avatar

phuonglop12a2

View GitHub Profile
@phuonglop12a2
phuonglop12a2 / jquery-scroll-bottom.js
Created August 31, 2018 07:33 — forked from toshimaru/jquery-scroll-bottom.js
Detect the scrolling to bottom of the page using jQuery.
$(window).on("scroll", function() {
var scrollHeight = $(document).height();
var scrollPosition = $(window).height() + $(window).scrollTop();
if ((scrollHeight - scrollPosition) / scrollHeight === 0) {
// when scroll to bottom of the page
}
});