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 am using Javascript SDK in order to add a register box in my site, but... I was wondering, at least, here in Spain, lots of companies block Facebook site, so... how can I detect if user was unable to load all.js, and show my default register box??

I tried js loaders like HeadJS or LAB.JS but I couldn't manage to get it to work. or things like checking typeof of some variables of all.js but nothing worked

Any help would be appreciated :)

share|improve this question

1 Answer

<script src="https://connect.facebook.net/en_US/all.js"></script>
<script>
    if (!window.FB) {
        // Whoops, all.js couldn't be loaded for *some* reason... assume blocked.
    } 
</script>
share|improve this answer

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.