I have a Facebook like button on my page using the XBFML tag. I think the code is working, because it works in Firefox without a problem.
But in IE 8 (running in IE 7 compliant mode), the button does not show at all.
If I switch it all to the iFrame version of the like button it all works. But when I go with the XBFML tag it does not work.
Anyone run into anything like this?
$('html').attr('xmlns:fb', 'http://www....')
) didn't work. I'm debugging through Facebook's code right now and they seem to usedocument.namespaces
to read the namespaces - and even after me adding the namespace via jQuery,document.namespaces['xmlns:fb']
returnsundefined
. – Cookhouse