Jquery 스크롤링 페이징 구현

Jquery 스크롤링 페이징 구현


1
2
3
4
5
6
7
8
9
10
11
/**
* 스크롤링 페이징을 위한 처리
*/
$(document).ready(function(){
$("#scrollPaging").scroll(function(ev){
if($(this).scrollTop() == (document.getElementById("scrollPaging").scrollHeight - document.getElementById("scrollPaging").clientHeight)){
var start = startIndex;
groupUserGraphicTable(obj, start);
}
});
});
Share