본문 바로가기

DEV/Javascript

[jQuery] 스크롤 끝 이벤트 알아내기

반응형

브라우저창 스크롤 끝 이벤트

$(window).scroll(function () {     if ($(window).scrollTop() == ($(document).height() - $(window).height())) {     console.log('window scroll End!!');     } })


DIV 스크롤 끝 이벤트

$('#wrap').scroll(function () {

var el = $(this); if((el[0].scrollHeight - el.scrollTop()) == el.outerHeight()) {

console.log('wrap scroll End!!');

}

})


반응형

'DEV > Javascript' 카테고리의 다른 글

🛑Uncaught ReferenceError: getEventListeners is not defined  (0) 2024.05.23
[Vue] InfiniteScroll  (0) 2022.11.15
[Javascript] Object 프로퍼티 체크  (0) 2017.12.21
[Javascript]빈 Object 체크  (0) 2017.09.13
첫일 말일 구하기  (0) 2017.09.07