Skip to content

Instantly share code, notes, and snippets.

@msurguy
Created February 22, 2013 20:29
Show Gist options
  • Save msurguy/5016325 to your computer and use it in GitHub Desktop.
Save msurguy/5016325 to your computer and use it in GitHub Desktop.
Javascript click events to share on FB, twitter or Google +
$('tweet_link').click(function() {
var width = 550;
var height = 420;
var left = parseInt((screen.availWidth/2) - (width/2));
var top = parseInt((screen.availHeight/2) - (height/2));
var windowFeatures = "width=" + width + ",height=" + height + ",status,resizable,left=" + left + ",top=" + top + "screenX=" + left + ",screenY=" + top;
myWindow = window.open("https://twitter.com/share?text=myapp.do%20%7C%20%40FreshBooks%20time%20tracking%20for%20to-dos%3A%20&url=http%3A%2F%2Fmyapp.com%2F&via=myapp", "subWind", windowFeatures);
return false;
});
$('._gplus_link').click(function() {
var width = 550;
var height = 420;
var left = parseInt((screen.availWidth/2) - (width/2));
var top = parseInt((screen.availHeight/2) - (height/2));
var windowFeatures = "width=" + width + ",height=" + height + ",status,resizable,left=" + left + ",top=" + top + "screenX=" + left + ",screenY=" + top;
myWindow = window.open("https://plus.google.com/share?hl=en&url=http%3A%2F%2Fmyapp.com", "subWind", windowFeatures);
return false;
});
$('._facebook_link').click(function() {
var width = 550;
var height = 420;
var left = parseInt((screen.availWidth/2) - (width/2));
var top = parseInt((screen.availHeight/2) - (height/2));
var windowFeatures = "width=" + width + ",height=" + height + ",status,resizable,left=" + left + ",top=" + top + "screenX=" + left + ",screenY=" + top;
myWindow = window.open("http://www.facebook.com/sharer.php?u=http%3A%2F%2Fmyapp.com%2F", "subWind", windowFeatures);
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment