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.

I've made a popup box for my site, which invites visitors to Like my page on FB. I wanted to know if there's a way to detect people who have liked the page, and remove the popup box (= a div), so it doesn't loads for them, everytime they browse back the site.

Don't know if this is possible, but I wanted to know. Here's the script I have for this, just in case you need it:

<script type="text/javascript" src="http://code.jquery.com/jquery.min.js"></script>
<script type="text/javascript">
var dom = {};
dom.query = jQuery.noConflict(true);
var time = 11;

window.setInterval(test, 1000);

function test()
{
    time -=1;
    dom.query('#fb-timer').html(time); 

    if(time == 0)        
    {
        dom.query('#fb-popupdiv').remove();
    }
} 
function setCookie(name,value,days) {
    if (days) {
        var date = new Date();
        date.setTime(date.getTime()+(days*24*60*60*1000));
        var expires = "; expires="+date.toGMTString();
    }
   else var expires = "";
   document.cookie = name+"="+value+expires+"; path=/";
}

function readCookie(name) {
    var nameEQ = name + "=";
    var ca = document.cookie.split(';');
    for(var i=0;i < ca.length;i++) {
        var c = ca[i];
        while (c.charAt(0)==' ') c = c.substring(1,c.length);
       if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);

    }
    return null;
}

function eraseCookie(name) {
    setCookie(name,"",-1);
}
dom.query(document).ready(function() {
    var val = readCookie("popupAlreadyShown");
    if (!val) {
        setCookie("popupAlreadyShown", 1, 1);
        dom.query("#fb-popupdiv").show();
    } else {
}
});
</script>

Thanks in advance!

share|improve this question

2 Answers

up vote 2 down vote accepted

There's no way you can know from facebook's end that whether the page was liked or not unless you have access to user's likes. But for that you'll have to get the user signup via facebook connect.

Most of the like gates/popups use cookie to keep track of the like. When the user likes the page, facebooks's edge.create is used to listen to the like and a cookie is created. If the cookie is cleared the popup will appear again.

More about fb events: https://developers.facebook.com/docs/reference/javascript/FB.Event.subscribe/

share|improve this answer
Ok, thanks for your answer, vivek. Maybe I just want that users who have liked the page doesn't get the popup if they reload the site, or visit in any other time, without 'neccessarily' detect them. Is that possible? – user1903782 Dec 19 '12 at 22:48
You need them to log in using your app and grant you access to their list of likes – Igy Dec 19 '12 at 22:52
Agree with lgy and I mentioned the same thing in my answer. Other than that there's no way. – vivek Dec 19 '12 at 23:04
Ahhh, ok, I got it now :/. Thanks for your answers guys! – user1903782 Dec 19 '12 at 23:15
You're welcome. – vivek Dec 19 '12 at 23:20

You want to take a look at the edge.Create event. Subscribe to it, and perform whatever functions you want within it. For example:

<script type='text/javascript'>
    window.fbAsyncInit = function () {
        FB.init({ appId: '1234567890', status: true, cookie: true,
            xfbml: true
        });

        FB.Event.subscribe('edge.create', function (response) {
            $("#facebookdiv").hide();
            // set a variable or a cookie so it doesn't show on future requests
        });
</script>

From the Facebook documentation on the page I linked:

edge.create - fired when the user likes something (fb:like). The response parameter to the callback function contains the URL that was liked:

"http://www.example.com/article1.php"
share|improve this answer
Thanks for your answer, Scott. But how do I subscribe to that event, sorry I don't understand how to do it. Should I add that code to my script? – user1903782 Dec 19 '12 at 21:45

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.