$(document).ready(function(){ jQuery(function(data) { $('.notify_body').on('scroll', function() { var cresults = ($(data).find('.notify_left').length); var total_ntf = $('.allntf').text(); if(cresults == total_ntf) { } else { if($(this).scrollTop() + $(this).innerHeight() >= $(this)[0].scrollHeight && (cresults != 0)){ $.ajax({ type:'GET', url:'/user/notifications.php', data:'start='+cresults+'&mode=list&begin=no', beforeSend:function(){ $('.notify_loading').fadeIn(); }, success:function(html){ $('.notify_loading').hide(); $('#get-list-view').append(html); } }); } } }); }); });