Skip to content

Instantly share code, notes, and snippets.

View joedevon's full-sized avatar

Joe Devon joedevon

View GitHub Profile
@joedevon
joedevon / fb.get.status.html
Created November 19, 2011 23:33
Facebook get user Login Status
<html lang="en" prefix="og: http://ogp.me/ns#" xmlns:fb="http://www.facebook.com/2008/fbml">
<head><title>Hello Facebook</title></head>
<body>
<div id="fb-root"></div>
<script type="text/javascript">
window.fbAsyncInit = function() {
FB.init({
appId: YOUR_APP_ID_HERE,
channelURL: '//www.example.com/channel.html', // Channel File
status: true, // check login status
@joedevon
joedevon / jquery-fb-lab.html
Created November 20, 2011 23:36
Load jQuery & Facebook asynchronously with LAB.js
<html lang="en" prefix="og: http://ogp.me/ns#" xmlns:fb="http://www.facebook.com/2008/fbml">
<head><title>Hello Facebook</title></head>
<body>
<div id="content"></div>
<div id="fb-root"></div>
<script src="/path/to/js/LAB.min.js"></script>
<script>
window.fbAsyncInit = function() {
// jQuery will be loaded due to the LAB.js "wait"
$("#content").html("Welcome!");