I was wondering, I wish to have a landing page with Facebook s Open Graph (specifically the like button) and I wanted to basically have content set to display:none (can t remember the specific until a user likes a page. An example being a div on an e-commerce store that when a user likes the page, the div is set to display:block and users can redeem a coupon code for discount.
I would like to be able to do this with div displays.
I saw this little snippet of code on the Facebook developers forum:
| ( taken from http://fbrell.com/xfbml/fb:like ) (Note: The event that s fired when you click "like")
<script>
// this will fire when any of the like widgets are "liked" by the user
FB.Event.subscribe( edge.create , function(href, widget) {
Log.info( You liked + href, widget);
});
</script>
Can this be modified to effective set a div from display:none to display:block?
Thank you SO.