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.

Possible Duplicate:
How to check if a user likes my Facebook Page or URL using Facebook's API

how can i show or display information only if the user is fan or likes my page without using fbml. I have some old code there.

Something like:

<fb:visible-to-connection>
    Show content to the user
    <fb:else>
        <div style="position:absolute; top:0; left:0;">
               Like the page inorder to view the content.
        </div>
    </fb:else>
</fb:visible-to-connection>

But fbml has been deprecated, I need to this by javascript without using server related code, like php or aspx.

Thanks for any help.

And forgive my bad english.

share|improve this question

marked as duplicate by Igy, Dominic Kexel, Sergey K., oers, ЯegDwight Sep 28 '12 at 10:00

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

up vote 1 down vote accepted

Attach a handler function to the facebook like buttons click event that enables displaying of the data.

But without actually checking with the facebook servers you cannot be sure and therefore a user can always fake it by just calling the javascript function displaying the information, for which you don't check if the user behaves.

share|improve this answer
Thanks. But how do I keep on showing the information when they reenter the page. I need to check if they like. Not the like action. – Necroside Sep 27 '12 at 22:15
then ask the facebook server or save the fact that the user clicked it in YOUR database via an ajax called spawned upon click on the like button. – Gung Foo Sep 27 '12 at 22:24

There is a detailed explanation of how to accomplish this using only Javascript at Facebook how to check if user has liked page and show content?

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.