Twitter kullanıcı tıklama yerde düğmesi @ izleyin zaman bir div nasıl değiştirilir

0 Cevap php

I am looking to change a DIV when I know a user is following me. I cant get the code to fire the alerts.
The follow button does show up, but after i click and follow, nothing happens.

twttr.anywhere(function (T) {
    T("#followplaceholder").followButton('twitterapi');
    function follow(){
        T.currentUser.isFollowing('twitterapi'), function(e){
            if (e == true){
                alert("following");
            } else {
                 alert("not following");
            }
        }; 
    }                                                             
});

Herhangi bir yardım büyük olurdu!


İşte ben şimdi kullanmaya çalışıyorum kodudur. Nerede i kovulmak için işlevini diyorsunuz? Yoksa ben sadece fonksiyon bölümünü almalıdır?

twttr.anywhere(function (T) {
    T("#followplaceholder").followButton('twitterapi');
    function follow(){
        T.currentUser.isFollowing('twitterapi'), function(e){
            if (e == true){
                alert("following");
            } else {
                 alert("not following");
            }
        }; 
    }                                                             
});

0 Cevap