Главная > Javascript > jquery if scroll to bottom of page

jquery if scroll to bottom of page

$(window).scroll(function(){
	if($(window).scrollTop()+$(window).height()==$(document).height()){
		console.log("bottom");
	}
});
$(window).scroll(function(){
	if($(window).scrollTop()+$(window).height()>$(document).height()-100){
		console.log("near bottom");
	}
});
Categories: Javascript Tags:
  1. Пока что нет комментариев.
Похожие публикации