jQuery scroll 스크롤 끝을 확인하는 방법

2021. 12. 21. 10:31Study/jQuery

 

브라우저 창 끝 이벤트

$(window).scroll(function(){
	if ($(window).scrollTop() == $(document).height() - $(window).height()) {
    	alert('End of Window');
    }
});

 

 

DIV 끝 이벤트

$("#inside").scroll( function() {
	var elem = $("#inside");
    
    if ( elem[0].scrollHeight - elem.scrollTop() == elem.outerHeight()) {
    	alert("End of Yellow");
    }
});