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 need to hide the Facebook like button on my site when is clicked. I use the official like button for my fanpage. When a visitor clicks like and becomes a fan, I want the like button to disappear and be hidden from him forever. I found that it can be done with FB.Event.subscribe('edge.create;) but I don't know how.

share|improve this question

1 Answer

It should be easy:

1) Place the like button within a container. 2) Subscribe to FB.Event.subscribe('edge.create'). 3) When user has liked, hide the container.

share|improve this answer
Sounds easy but i have no idea how to do that :D...Can you please write the code for that...i don't know javascript coding...Thank you! – Alina Popa Feb 10 at 14:37

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.