jQuery scroll 스크롤 끝을 확인하는 방법
2021. 12. 21. 10:31ㆍStudy/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");
}
});
'Study > jQuery' 카테고리의 다른 글
Ajax로 불러온 엘리먼트의 이벤트가 작동 하지 않을때 (0) | 2021.12.31 |
---|---|
jQuery Swiper (0) | 2021.12.27 |
jQuery sticky menu, scroll spy (0) | 2021.12.16 |
jQuery left right clone gallery (0) | 2021.12.15 |
jQuery 문자열을 변수로 변환하는 함수 eval (0) | 2021.12.15 |