Skip to content

Instantly share code, notes, and snippets.

@SimonLlewellyn
Created May 2, 2017 00:21
Show Gist options
  • Save SimonLlewellyn/6213f24f08b32af9280f72d4ef85c1ae to your computer and use it in GitHub Desktop.
Save SimonLlewellyn/6213f24f08b32af9280f72d4ef85c1ae to your computer and use it in GitHub Desktop.
Share to Facebook, Twitter, G+
function shareTwitter(title,url){
//url = encodeURI(url);
var t = title;
var lnk = "https://twitter.com/intent/tweet?text="+t+"&url="+url+"&via=NZBandGear";
window.open(lnk, 'mywin','left=50,top=50,width=600,height=350,toolbar=0');
return false;
}
//===========================================================================
function shareFacebook(url){
var lnk = "http://www.facebook.com/sharer.php?u="+url;
window.open(lnk, 'mywin','left=50,top=50,width=600,height=350,toolbar=0');
return false;
}
//===========================================================================
function shareGooglePlus(url){
var lnk = "http://plus.google.com/share?url="+url;
window.open(lnk, 'mywin','left=50,top=50,width=600,height=350,toolbar=0');
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment