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?