Skip to content

Instantly share code, notes, and snippets.

@celticwebdesign
Created October 25, 2017 14:59
Show Gist options
  • Save celticwebdesign/e323d79f483af3dcea8fce615b2d6983 to your computer and use it in GitHub Desktop.
Save celticwebdesign/e323d79f483af3dcea8fce615b2d6983 to your computer and use it in GitHub Desktop.
<a class="share_linkedin" href="#" data-url="https://www.linkedin.com/shareArticle?mini=true&amp;url=Enter URL here&amp;title=enter title here&amp;summary=enter summary here&amp;source=">L</a>
$('a.share_linkedin').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(this_url,'Linkedin','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