Skip to content

Instantly share code, notes, and snippets.

@64lines
Last active January 4, 2016 07:49
Show Gist options
  • Save 64lines/8591367 to your computer and use it in GitHub Desktop.
Save 64lines/8591367 to your computer and use it in GitHub Desktop.
Share currrent page on Facebook
function shareOnFacebookButton() {
var dynamicUrl = "https://www.facebook.com/sharer/sharer.php"
+ "?"
+ "u=" + window.location.href;
var fbButton = document.createElement("a");
fbButton.id = "facebook-url";
fbButton.href = dynamicUrl;
fbButton.innerText = "Share on Facebook";
document.body.appendChild(fbButton);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment