Skip to content

Instantly share code, notes, and snippets.

@iainmcampbell
Created January 14, 2015 19:39
Show Gist options
  • Save iainmcampbell/a0a49989a38bec99d576 to your computer and use it in GitHub Desktop.
Save iainmcampbell/a0a49989a38bec99d576 to your computer and use it in GitHub Desktop.
Social Media Share Links
<a href="#" class="facebook" onclick="window.open(
'https://www.facebook.com/sharer/sharer.php?u='+encodeURIComponent(location.href),
'facebook-share-dialog','width=626,height=436');return false;">
Facebook
</a>
<a href="#" class="twitter" onclick="window.open(
'http://twitter.com/intent/tweet?url='+encodeURIComponent(location.href),
'twitter-share-dialog','width=626,height=300');return false;">
Twitter
</a>
window.open('https://www.facebook.com/sharer/sharer.php?u=' + encodeURIComponent(location.href), 'facebook-share-dialog', 'width=626,height=436')
window.open('http://twitter.com/intent/tweet?url='+encodeURIComponent(location.href), 'twitter-share-dialog', 'width=626,height=300')
@iainmcampbell
Copy link
Author

Swap location.href for document.location.origin+document.location.pathname to link to the root of an angular app (or other hash routing app).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment