Skip to content

Instantly share code, notes, and snippets.

@davidverhage
Created September 20, 2016 11:19
Show Gist options
  • Save davidverhage/a451b3dfe4d8f85fc0b07e9b6767c83e to your computer and use it in GitHub Desktop.
Save davidverhage/a451b3dfe4d8f85fc0b07e9b6767c83e to your computer and use it in GitHub Desktop.
$(document).ready(function() {
$.ajaxSetup({ cache: true });
$.getScript('//connect.facebook.net/en_US/sdk.js', function(){
FB.init({
appId: '{your-app-id}',
version: 'v2.7' // or v2.1, v2.2, v2.3, ...
});
$('#loginbutton,#feedbutton').removeAttr('disabled');
FB.getLoginStatus(updateStatusCallback);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment