Вот примерно такой запрос отправляет браузер , для подзагрузки следующего элемента списка.
Покопался в коде страницы нашел интересный скрипт , кто поможет разобраться.
<script>
var PerLoadLimit = 100;
var LoadedFrom = PerLoadLimit;
var MaxNum = 760;
function InitLoading(){
$(".dub").last().scrollReached({one: true}, function(){
if(LoadedFrom < MaxNum)
LoadNext(LoadedFrom);
});
}
function LoadNext(from, to, callback){
var req = {start_list : from};
if(to) req.end_list = to;
$.post(top.location, req,function(data){
$("div.dub").last().after(data);
LoadedFrom = to ? to : from + PerLoadLimit;
InitFlap();
InitLoading();
MyMoviesInit();
if(typeof(callback) == 'function') {
callback();
}
});
}
$(function(){
if(top.location.href.indexOf('#') != -1){
var anc = top.location.href.split('#')[1];
if(AncherStart[anc]) {
LoadNext(LoadedFrom, AncherStart[anc] + PerLoadLimit, function(){ top.location = top.location.href });
LoadedFrom = AncherStart[anc];
}
} else {
InitLoading();
}
$(".anchers a").click(function(){
var anc = $(this).attr('href').split('#')[1];
if(AncherStart[anc] && AncherStart[anc] + PerLoadLimit > LoadedFrom) {
LoadNext(LoadedFrom, AncherStart[anc] + PerLoadLimit, function(){ top.location = "#" + anc; });
LoadedFrom = AncherStart[anc];
}
})
});
</script>
и вот еще
<tr><td class="news anchers" bgcolor="#f2f2f2">Быстрый переход: <script>AncherStart['director'] = 0;</script><a href="#director" class="all">Режиссеры</a>, <script>AncherStart['actor'] = 13;</script><a href="#actor" class="all">Актеры</a>, <script>AncherStart['producer'] = 632;</script><a href="#producer" class="all">Продюсеры</a>, <script>AncherStart['voice_director'] = 670;</script><a href="#voice_director" class="all">Режиссеры дубляжа</a>, <script>AncherStart['voice'] = 671;</script><a href="#voice" class="all">Роли дублировали</a>, <script>AncherStart['writer'] = 698;</script><a href="#writer" class="all">Сценаристы</a>, <script>AncherStart['operator'] = 721;</script><a href="#operator" class="all">Операторы</a>, <script>AncherStart['composer'] = 727;</script><a href="#composer" class="all">Композиторы</a>, <script>AncherStart['design'] = 728;</script><a href="#design" class="all">Художники</a>, <script>AncherStart['editor'] = 751;</script><a href="#editor" class="all">Монтажеры</a></td></tr>