JQuery: div yukarı kaydırın eğer son

0 Cevap php

Ben bu arkadaş isteği sayfası var, ve benim div istiyorum

echo "<div style=' font-weight: bold; background: #283b43; border-bottom: 1px dashed #719dab;'>";
echo "<img src='images/NewFriend_small.png' style='float: left; margin-left: 25px; margin-right: 10px;'>";
echo "Friend requests";
echo "</div>";

To disappear too if it's the last friend request the user have. Right now it doesnt do it, and only slide up the actual request (username, picture and so)

Onun son friendrequest olmadığını nasıl kontrol etmelisiniz?

Sağ şimdi benim kod bu gibi

    $friendsWaiting = mysql_query("SELECT * FROM users_friends where uID = '$v[id]' AND type = 'friend' AND accepted = '0'");
while($showW = mysql_fetch_array($friendsWaiting)){
echo "id: $showU[bID]";
}

JS kabul ettiklerinde / arkadaş inkar:

function MeYouFriendNB(confirm){
 var c = confirm ? 'confirm' : 'ignore';
var fID = $('#fID').val();

    $.ajax({ 
       type: "POST",
       url: "misc/AddFriend.php",
    data: {
    mode: 'ajax',
        friend: c,
    uID : $('#uID').val(),
    fID : $('#fID').val(),
        bID : $('#bID').val()
    },
       success: function(msg){
$('#friend'+fID).slideUp('slow');
$('#Friendlist').prepend(msg);
 $('#theNewFriend').slideDown('slow');
        }
     });
}

0 Cevap