Skip to content

Instantly share code, notes, and snippets.

@John2496
Last active December 20, 2015 11:39
Show Gist options
  • Save John2496/6124679 to your computer and use it in GitHub Desktop.
Save John2496/6124679 to your computer and use it in GitHub Desktop.
shareMemeOnFacebook = function(memeId, caption) {
$.ajax({
url: 'scripts/share-image.php',
data: {
meme: memeId,
caption: caption,
fb_access_token: FB.getAccessToken()
},
success: function(r) {
alert("shared");
}
});
}
shareMemeOnFacebook(5, 'caption')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment