Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question

4 Answers

up vote 17 down vote accepted

Try adding the xmlns attribute to the HTML document for the FB namespace:

xmlns:fb="http://www.facebook.com/2008/fbml" xmlns:og="http://opengraphprotocol.org/schema/"

This is another case where Firefox is being too forgiving vs IE.

share|improve this answer
Thanks, this worked a treat! – CubanX Jun 2 '10 at 13:23
worked perfectly – Brian Wigginton Aug 18 '10 at 23:38
1  
I am loading Facebook Like asynchronously, and found that adding the namespaces directly (e.g. via $('html').attr('xmlns:fb', 'http://www....')) didn't work. I'm debugging through Facebook's code right now and they seem to use document.namespaces to read the namespaces - and even after me adding the namespace via jQuery, document.namespaces['xmlns:fb'] returns undefined. – ripper234 Oct 3 '11 at 10:06
if(document.namespaces) {
    //IE
    document.namespaces.add("fb", "http://ogp.me/ns#");
    document.namespaces.add("og", "http://ogp.me/ns/fb#");

    if (typeof(console) != 'undefined' && console) {
           console.log("IE: OG and FB NameSpace added");
       }
} else {
    //Other Browsers
    var htmlRoot = jQuery(jQuery("html").get(0));
    if(typeof(htmlRoot.attr("xmlns:fb")) == "undefined") {
        htmlRoot.attr("xmlns:og",'http://ogp.me/ns#');
        htmlRoot.attr("xmlns:fb",'http://ogp.me/ns/fb#');
        if (typeof(console) != 'undefined' && console) {
            console.log("OG and FB NameSpace added");
        }
    }
}

do NOT put this into a $(document).ready() function!

share|improve this answer

the attribute: xmlns:fb="http://www.facebook.com/2008/fbml" is mentioned as a "must be used" in the Facebook Connect documentation. Some pointers here.

share|improve this answer
+1 for link and simple explanation – Leftium Aug 26 '10 at 4:53

I think I have a slightly different implementation than you, but the same general issue of not seeing my Facebook social buttons in IE only. It turned out that it was because I had put the Facebook script tag at the bottom of my page. The solution was to move

<script src="http://connect.facebook.net/en_US/all.js#xfbml=1"></script>

so that it was before my button insertion:

<fb:like href="" send="true" layout="button_count" width="350" show_faces="true" font=""></fb:like>

...then the buttons started showing up in IE as well.

share|improve this answer

protected by Community Feb 2 '12 at 20:08

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.