this problem exists only on opera browser and I find no problems with any other browsers. Its that i'm trying to load a facebook like button of XBML version into a div element via javascript on onload event. But the like button seems to got lost somewhere and is never rendered as expected. However, when the same block of code is pasted on a static html page, it is rendered correctly. I've been trying to find a solution on this but to no avail. Someone please help!
Asynchronous loading of fb SDK-
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function()
{
FB.init
({
appId:'ID',
status : true,
cookie : true,
xfbml : true
});
};
(function(d)
{
var js, id = 'facebook-jssdk';
if (d.getElementById(id))
{
return;
}
js = d.createElement('script'); js.id = id; js.async = true;
js.src = "//connect.facebook.net/en_US/all.js";
d.getElementsByTagName('head')[0].appendChild(js);
}
(document));
</script>
Here goes the dynamic loading of like button on onload
var fb_plug="<div id='phela_fb_like'><fb:like href='http://www.facebook.com/facebook' send='false' width='300' show_faces='false'></fb:like></div>";
document.getElementById('phela_pagi').firstChild.innerHTML=fb_plug;
js.src = "http://connect.facebook.net/en_US/all.js";? – c69 Sep 20 '11 at 19:56