Skip to content

Instantly share code, notes, and snippets.

View kalechao87's full-sized avatar

kale kalechao87

  • 深圳梵一网络科技有限公司
  • 中国,西安
View GitHub Profile
@kalechao87
kalechao87 / jquery-scroll-bottom.js
Created November 25, 2015 01:48 — 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
}
});