If you look at the homepage of http://beta.gulfdine.com/, you will note that the bottom bar has a Facebook "Like" button. I have used the code for this from the Facebook documentation page, and am loading the Javascript for this asynchronously, as follows:
window.fbAsyncInit = function () {
FB.init({ appId: facebookAppId, status: true, cookie: true, xfbml: true });
//The below is used to expand the bottom section to display the sharing section on clicking 'like'
FB.Event.subscribe('edge.create', function (response) {
openNewForm(function () { $("#shareFacebook").show("fast"); }, 'facebook');
});
};
(function () {
var e = document.createElement('script');
e.type = 'text/javascript';
e.src = 'http://connect.facebook.net/en_US/all.js';
e.async = true;
document.getElementById('fb-root').appendChild(e);
} ());
The button itself is simple FBML:
<fb:like layout="button_count" show_faces="false" width="110" font="trebuchet ms"></fb:like>
All this was working fine until recently, and now a duplicate "Like" button is shown next to the normal one (the one with the 'x people' text). Firebug shows a Javascript error "ExternalPageLikeWidget is not defined" in the Facebook page that is called (http://www.facebook.com/plugins/like.php).
Does anybody have any experience with this error, or know what might be causing it? I'm completely bamboozled at this point. Can't tell if this is an FB bug, or something that I'm doing wrong.
Edit: It appears that the bug only shows when you have "Liked" the page. Please try doing so and refreshing the page. You can unlike the page once you've tested this out. Thanks!