Динамическая загрузка блоков при скроллинге

<div id="lazyblock">
<script>
function lazyblock(){
   var wt = $(window).scrollTop();    //* top of the window
   var wb = wt + $(window).height();  //* bottom of the window
 
   $("#lazyblock").each(function(){
      var ot = $(this).offset().top;  //* top of object (div)
      var ob = ot + $(this).height(); //* bottom of object
      if(!$(this).attr("loaded") && wt<=ob && wb >= ot){
         $(this).html('<iframe src="/block.html" scrolling="no" frameborder="0"
                        style="border:none; overflow:hidden; width:211px; height:790px;" allowTransparency="true">
                      </iframe>');
         $(this).attr("loaded",true);
      }
   });
}
 
$(document).ready(function(){
    $(window).scroll(lazyblock);
    lazyblock();
});
</script>
</div>


Оставить комментарий

Содержание этого поля является приватным и не предназначено к показу. Если есть аккаунт Gravatar, то отображается глобальный аватар.

Подробнее о форматировании

КАПЧА
А ты не робот? Введи 5 цифр
                                                                          
,d8 ,d8 8888888888 ad888888b, ad888888b,
,d888 ,d888 88 d8" "88 d8" "88
,d8" 88 ,d8" 88 88 ____ a8P a8P
,d8" 88 ,d8" 88 88a8PPPP8b, ,d8P" aad8"
,d8" 88 ,d8" 88 PP" `8b a8P" ""Y8,
8888888888888 8888888888888 d8 a8P' "8b
88 88 Y8a a8P d8" Y8, a88
88 88 "Y88888P" 88888888888 "Y888888P'

Enter the code depicted in ASCII art style.
To prevent automated spam submissions leave this field empty.