I use the FB Javascript API to create Like-buttons. The button appears in the lightbox-view of an image based on lightbox2 (http://lokeshdhakar.com/projects/lightbox2/) I create once a div with an id
.append($('<div/>', {
"id": 'fb-image-like', "data-send" : 'false', "data-layout" : 'button_count', "data-width" : '250', "data-show-faces" : 'true', "data-colorscheme" : 'dark', "data-font":'arial'
}))
on lightbox's "build"-event. On "updateDetails" (Show next image) I set the data-href-attribute, append the "fb-like"-class and start window.fbAsyncInit();
$('.fb-like').removeClass("fb-like");
//FB._initialized = false;
$("#fb-image-like").attr("data-href", url).addClass("fb-like");
window.fbAsyncInit();
Facebook creates the iframe with Like-button and everything works perfectly. On next image the generated code looks good (replaced data-href) but the Like-Button appears as already liked, because the URL in like.php doesn't change. The window.fbAsyncInit(); doesn't re-init the session. If I dislike now, the last image will be disliked. What can I do, to re-init the Facebook-session completely?