Jquery Scroll İndikçe Yeni Veri |
5 Mesajlar | 6.782 Okunma |
$(function(){
$(window).scroll(function(){
if ($(window).scrollTop() == $(document).height() - $(window).height()){
var id = $(".resim_url img:last").attr("id");
$.ajax({
type: "post",
url: "resim_ajax.php",
data: {"id":id},
success: function(veri){
if(veri == "bos"){
$(".loader").hide();
alert("Gösterilecek başka Resim kalmadı.");
}
else{
$(".resim ul li").append(veri);
}
}
})
}
});
});
$(function(){
$(window).scroll(function(){
if ($(window).scrollTop() == $(document).height() - $(window).height()){
var id = $(".resim_url img:last").attr("id");
$.ajax({
type: "post",
url: "resim_ajax.php",
data: {"id":id},
success: function(veri){
if(veri == "bos"){
$(".loader").hide();
alert("Gösterilecek başka Resim kalmadı.");
}
else{
$(".resim ul li").append(veri);
}
}
})
}
});
});
Profesyonel WordPress Temaları - temapazari.com