cw-seki
9/25/2015 - 7:11 AM

jQueryでページ最下部のスクロール時のイベントをキャッチ

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
	}
});