Skip to content

Instantly share code, notes, and snippets.

@wytanj
Forked from tracend/fb-user-liked-page.js
Created April 2, 2018 09:16
Show Gist options
  • Select an option

  • Save wytanj/a56cc3cf5b1a089a996bc8e08fb40891 to your computer and use it in GitHub Desktop.

Select an option

Save wytanj/a56cc3cf5b1a089a996bc8e08fb40891 to your computer and use it in GitHub Desktop.

Revisions

  1. Makis Tracend created this gist Apr 20, 2011.
    7 changes: 7 additions & 0 deletions fb-user-liked-page.js
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,7 @@
    FB.api({ method: 'pages.isFan', page_id: '{PAGE_ID}' }, function(response) {
    if (response) {
    alert("user has liked the page");
    } else {
    alert("user has not liked the page");
    }
    });