Skip to content

Instantly share code, notes, and snippets.

@celticwebdesign
Created October 25, 2017 14:59
Show Gist options
  • Save celticwebdesign/fe27c1e55fa0d5f8007f4d0a6bd82867 to your computer and use it in GitHub Desktop.
Save celticwebdesign/fe27c1e55fa0d5f8007f4d0a6bd82867 to your computer and use it in GitHub Desktop.
<a class="share_facebook" href="#" data-url="enter url here">F</a>
$('a.share_facebook').click(function(e) {
e.preventDefault();
var $this = $(this);
var this_url = $this.data('url');
var this_image = '';
var winWidth = 520;
var winHeight = 350;
var winTop = (screen.height / 2) - (winHeight / 2);
var winLeft = (screen.width / 2) - (winWidth / 2);
window.open('https://www.facebook.com/sharer/sharer.php?u='+this_url,'Facebook','top='+winTop+',left='+winLeft+',toolbar=0,status=0,width='+winWidth+',height='+ winHeight);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment