Skip to content

Instantly share code, notes, and snippets.

@Stichoza
Created February 13, 2013 06:56
Show Gist options
  • Star 7 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save Stichoza/4942775 to your computer and use it in GitHub Desktop.
Save Stichoza/4942775 to your computer and use it in GitHub Desktop.
Facebook share popup JS function, popup window in screen center.
function fbShare(url, title, descr, image, winWidth, winHeight) {
var winTop = (screen.height / 2) - (winHeight / 2);
var winLeft = (screen.width / 2) - (winWidth / 2);
window.open('http://www.facebook.com/sharer.php?s=100&p[title]=' + title + '&p[summary]=' + descr + '&p[url]=' + url + '&p[images][0]=' + image, 'sharer', 'top=' + winTop + ',left=' + winLeft + ',toolbar=0,status=0,width=' + winWidth + ',height=' + winHeight);
}
@PontusTideman
Copy link

Sorry to say, but this is not working... The Facebook server is throwing up an error about the link!

@fanane
Copy link

fanane commented Aug 1, 2016

not working man

@arun-kambhammettu
Copy link

Facebook stopped supporting sharer.php, instead you can use Facebook dialog for sharing content. https://developers.facebook.com/docs/sharing/reference/share-dialog

Check URL redirection from the above post.

@imvikaskohli
Copy link

Not working...
fiddle not working too

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