Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Hello I want to stop the facebook app login to stop from automatically poping up. I want the onclick function to make the pop up appear instead. I been trying to figure this out but haven't yet.

Below is my code.

     FB.getLoginStatus(function(response) {
     var page_id = "pageid";
      if (response && response.authResponse) {
      var user_id = response.authResponse.userID;
        var fql_query = "SELECT uid FROM page_fan WHERE page_id = "+page_id+"and      uid="+user_id;
        FB.Data.query(fql_query).wait(function(rows) {
          if (rows.length == 1 && rows[0].uid == user_id) {

            console.log("LIKE");
            $('#centerPopUp').hide();
            $('#cover2').hide();
            $('#cover').hide();
            $('#signUpPhoto').hide();


          } else {
            console.log("NO LIKEY");
            $('#centerPopUp').center();
            $('#centerPopUp').show();
            $('#cover2').show();
            $('#signUpPhoto').hide();
            jQuery('#next').hide();
            jQuery('#prev').hide();



                    }
            });

             } else {
            var _ftr;
            FB.login(function(response) {
            if (response && response.authResponse) {
            var user_id = response.authResponse.userID;
            var fql_query = "SELECT uid FROM page_fan WHERE page_id = "+page_id+"and 
            FB.Data.query(fql_query).wait(function(rows) {
              if (rows.length == 1 && rows[0].uid == user_id) {

                console.log("LIKE");
                $('#centerPopUp').hide();
                $('#cover2').hide();
                $('#cover').hide();
                $('#signUpPhoto').hide();
                window.location.reload();

              } else {
                console.log("NO LIKEY");
                $('#centerPopUp').center();
                $('#centerPopUp').show();
                $('#cover2').show();
                $('#signUpPhoto').hide();
                jQuery('#next').hide();
                jQuery('#prev').hide();


              }
            });

      } else {
            console.log("NO LIKEY");
            $('#cover').show();
            $('#signUpPhoto').show();

          }
        }, {scope: 'user_likes,publish_actions'});
      }
        });
  };



  // Load the SDK Asynchronously
  (function(d){
    var js, id = 'facebook-jssdk'; if (d.getElementById(id)) {return;}
    js = d.createElement('script'); js.id = id; js.async = true;
    js.src = "//connect.facebook.net/en_US/all.js";
    d.getElementsByTagName('head')[0].appendChild(js);
  }(document));
</script>
share|improve this question
Is this all of the code? what does the last curly bracket before the "Load the SDK Asynchronously" close? Can you please include all JS code? – Claudiu Aug 29 '12 at 22:49
“I want to stop the facebook app login to stop from automatically poping up” – well then don’t call FB.login in the else branch of your first if condition … – CBroe Aug 30 '12 at 11:39

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.