Is there a "share of it" for Facebook that is not a popup?

I want to add "share this on Facebook" to the page. It works fine for me using this url format:

http://www.facebook.com/sharer.php?u=my.url.here

but the problem is that it is specifically for the popup, so

  • the page looks weird at full browser size.
  • buttons are far from fields
  • after sending, there are messages on the page like "this window is closing soon"

So, is there a Facebook URL that can do the same, but that isn't meant to be a popup?

0


source to share


2 answers


Check out Facebook Connect

http://developers.facebook.com/connect.php

This is the new JS API ...



The method you want to call when you get everything lined up:

FB.Connect.showFeedDialog (bundle_id, post_data, null, null, FB.FeedStorySize.full, FB.RequireConnect.promptConnect, function (w) {alert ('shared');});

+2


source


facebook connect javascript SDK has changed .. its here https://developers.facebook.com/docs/reference/javascript/



thank

0


source







All Articles