Суть в том, что ajax запрос выполняется постоянно, а нужно чтобы выполнялся только один раз, как можно исправить?
var windowHeight = $(window).height();
$(document).on('scroll', function() {
$('.scroll-here1').each(function() {var self = $(this),
height = self.offset().top + self.height();
if ($(document).scrollTop() + windowHeight >= height) {
$.ajax({
url: "box1.html",
cache: false,
beforeSend: function() {},
success: function(html){
$("#load_box_1").html(html);
$('#box1').fadeIn(1300);
}
});
return false;
}});