I'm trying to make a popup on my site to function as a content locker if the Facebook user on my site hasn't allowed our application on Facebook. I believe the code I have for my popup is written well, as it functions properly by itself. The Facebook code that checks to see if the user is logged in or not also works properly independently. I'm having trouble combining the Facebook javascript and my DIVs. My popup works until I try and put the DIVs for the popup inside my else or else if statments.
Am I able to put these divs inside the javascript else if and else statements? The following DIVs are what I'm trying to put inside the statements:
<div class="overlay"><div class="overlay-content"></div></div>
I also tried displaying the divs by putting them inside document.write but it doesn't help me either.
My code can be found here, or pasted from there:
FB.getLoginStatus(function(response) {
if (response.status === 'connected'){
document.write("Looks like you're logged into Facebook and our app :)");
// the user is logged in and connected to your
// app, and response.authResponse supplies
// the user’s ID, a valid access token, a signed
// request, and the time the access token
// and signed request each expire
var uid = response.authResponse.userID;
var accessToken = response.authResponse.accessToken;
}
else if (response.status === 'not_authorized'){
<div class="overlay"><div class="overlay-content"></div></div>
// the user is logged in to Facebook,
//but not connected to the app
}
else{
<div class="overlay"><div class="overlay-content"></div></div>
// the user isn't even logged in to Facebook.
}
});
</script>