$(document).ready(function(){
var ch = 1;
$(window).scroll(function(){
var scrolling = window.pageYOffset || docElem.scrollTop || body.scrollTop ;
var height = $(window).height();
//alert(height+' | '+ch+' | '+scrolling);
if(scrolling>height*ch){
ch = ((scrolling+height)/height>>0)+1;
$('body, html').animate({scrollTop: height*(ch)},fast);
}else if(scrolling<height*ch){
ch = ((scrolling+height)/height>>0);
$('body, html').animate({scrollTop: height*(ch-1)},fast)
}
});
});
есть такой скрипт, вроде близко, но не то...
как быть? что исправить?