Skip to content

Instantly share code, notes, and snippets.

@jonathan-dejong
Created October 13, 2016 09:27
Show Gist options
  • Save jonathan-dejong/dfe358398921bfccd7c0fb952027a659 to your computer and use it in GitHub Desktop.
Save jonathan-dejong/dfe358398921bfccd7c0fb952027a659 to your computer and use it in GitHub Desktop.
jQuery(document).bind('FBSDKLoaded', function() {
/*
* Trigger facebook share dialog
*/
jQuery('.facebook-share').click(function(){
var href = window.location.href;
FB.ui({
method: 'share_open_graph',
action_type: 'og.likes',
action_properties: JSON.stringify({
object: href,
})
}, function(response){});
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment