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.