Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm developing a facebook app in javascript and I have a problem to use FB.ui to open a dialog to share on the facebook wall. I have this code:

$('#share_button').click(function(){
FB.ui(
{
    method: 'feed',
    name: photo.getName(),
    link: photo.getUrlView(),
    picture: +photo.getUrl(),
    caption: photo.getCaption(),
    description: photo.getDescription()
},
function(response) {
    if (response && response.post_id) {
        alert('Post was published.');
    } else {
        alert('Post was not published.');
    }
}
)
});

the values (name,descripton, picture, link, caption) going to refresh with js when I click on other link. When I click on to share the content on the first time, all its OK, but when the content is changed and I share the new content, Facebook shows the new dialog, but also shows the old...open all previous windows.

share|improve this question
we need more code to look at than that since that part is not the issue. What is the issue is the structure of the surrounding parts. Can you share a link to a url? – DMCS Jan 23 '12 at 22:55

1 Answer

Probably, this issue happen because you are binding a callback to the click event many times...

When you click on another link to refresh the Facebook dialog content, you bind the click event to show the dialog, if you bind the click event again, there are two callbacks binded to the click event of your Share button, then, two dialogs are showed, because two callbacks are called on the clicked event.

To solve this, you need to clean the callbacks binded to the click event before bind the new callback, so, your code should looks like this:

$('#share_button').unbind("click");
$('#share_button').click(function(){
    ...
});

Hope this help!

share|improve this answer
You're a boss!. Thanks a lot. – erama Jan 23 '12 at 23:18

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.