I\'m a bit stuck with this one. I have an article list with snippets that link off to the full article. when you hover over each blurb a bar appears at the bottom of the blu
An alternative that I used was to not render the fb like button until the container is displayed this can be acheived by using
window.fbAsyncInit = function () {
FB.init({
xfbml:false // Will stop the fb like button from rendering automatically
});
};
Then to render the like button you can use
FB.XFBML.parse(); // This will render all tags on the page
or the following is a Jquery example on how to render all XFBML within an element
FB.XFBML.parse($('#step2')[0]);
or plain javascript
FB.XFBML.parse(document.getElementById("step2"));