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 created an app and have put in this code as per another question on the stack.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Future Memories Surprise Coupon</title>
<link href="coupon-show.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="jquery.js"></script>
<script>
$(document).ready(function(){

FB.login(function(response) {
  if (response.session) {

      var user_id = response.session.uid;
      var page_id = "144658052217621"; //Future Memories
      var fql_query = "SELECT uid FROM page_fan WHERE page_id = "+page_id+"and uid="+user_id;
      var the_query = FB.Data.query(fql_query);

      the_query.wait(function(rows) {

          if (rows.length == 1 && rows[0].uid == user_id) {
              $("#container_like").show();
          } else {
              $("#container_notlike").show();
          }
      });


  } else {
    // user is not logged in
  }
});

});
</script>
</head>

<body>
<div id="fb-root"></div>
<script src="http://connect.facebook.net/en_US/all.js"></script>
<script>
FB.init({
appId  : '358653554232720',
status : true, 
cookie : true, 
xfbml  : true  
});
</script>
<div id="container_notlike">
<img src="https://www.mcssl.com/content/187686/Facebook_Assets/coupon_unchecked.png"     alt="Like Us Today!" />
</div>

<div id="container_like">
<img src="https://www.mcssl.com/content/187686/Facebook_Assets/coupon_checked.png" alt="Thanks For Liking Us!" />
</div>
</body>
</html>

I'm trying to get the first div to be shown if not liked, the second to be shown if liked.

Am I doing something wrong?

share|improve this question
Do you want to hide the opposing div for each? – krillgar Jan 21 at 21:26

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.