Skip to content

Instantly share code, notes, and snippets.

@maxparm
Created June 4, 2012 18:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save maxparm/2870033 to your computer and use it in GitHub Desktop.
Save maxparm/2870033 to your computer and use it in GitHub Desktop.
JS - Facebook Loading Flag
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Meta -->
<meta charset="utf-8">
<!-- Javascript -->
<script type="text/javascript">
$(function(){
// Share post on user's wall
$('.fb-btn').click(function(e){
e.preventDefault();
if(window.fbLoaded) {
FB.ui({}, function(response) {
return response;
});
}
});
});
</script>
</head>
<body>
<div id="fb-root"></div>
<script>
window.fbLoaded = false;
window.fbAsyncInit = function() {
FB.init({
appId : 'YOUR_APP_ID', // App ID
channelUrl : '//WWW.YOUR_DOMAIN.COM/channel.html', // Channel File
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true // parse XFBML
});
window.fbLoaded = true;
};
// Load the SDK Asynchronously
(function(d){
var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
if (d.getElementById(id)) {return;}
js = d.createElement('script'); js.id = id; js.async = true;
js.src = Invoke.Env.fb.js_src;
ref.parentNode.insertBefore(js, ref);
}(document));
</script>
<div><a class="fb-btn">Share on FB</a></div>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment