Привет. Нашел скрипт, который подгружает данные из при прокрутки вниз.
$(document).ready(function(e){
var count = 20;
var begin = 0;
function scrolling(){
var currentHeight = $(this).children(".wrapper").height();
if($(this).scrollTop() >= (currentHeight - $(this).height()-100)){
$(this).unbind("scroll");
loader();
}
}
function loader(){
$.ajax({
type:"POST",
url:"./get.php",
data:{
count: count,
begin: begin*count
},
success:onAjaxSuccess
});
function onAjaxSuccess(data)
{
$(".wrapper").append(data);
$(".text").on("scroll", scrolling);
}
begin++;
}
$(".text").on("scroll", scrolling);
});
Как сделать чтобы происходило тоже самое но при скролле вверх?
Также скриптом сразу опускаю страницу вниз
$(document).ready(function(){
$('.text').scrollTop($('.text')[0].scrollHeight);
});