Tổng đài tư vấn: 033 688 8648
Hotline: 039 511 6390
$(window).scroll(function() { if($(window).scrollTop() == $(document).height() - $(window).height()) { // ajax call get data from server and append to the div } });
Đoạn code điều kiện để load dữ liệu về khi cuộn cửa sổ trình duyệt
$('#someScrollingDiv').on('scroll', function() { let div = $(this).get(0); if(div.scrollTop + div.clientHeight >= div.scrollHeight) { // do the lazy loading here } });
Còn đây là đoạn code áp dụng cho 1 khung dữ liệu nào đó trong trang web, ví dụ như 1 box div tin nổi bật ở bên trái hoặc bên phải...