I've recently implemented Facebook Login button and a Facebook "Like" button using XFBML. You can see the site on http://colnect.com
Everything works well with FireFox, Chrome, Opera & Safari.
However, IE doesn't show neither "login" or "like" buttons and no error message is available as well.
Any ideas?
For me, I needed a channel file as described in the FB Javascript SDK. I posted a response to a similar issue - perhaps it helps in your case too:
<fb:login-button> problems with IE8 (Internet Explorer) only
Seems I'll be the kind of person to answer himself hoping it'll help someone.
For Internet Explorer to recognize Facebook you should add
to your html tag, for me it's
The second problem I had was that IE doesn't support Array.indexOf() so here's the way around it:
Hope it helps.
For me what did that trick consistently was adding
class='fb-like'
to the<fb:like>
tag.I solved my issue with this code. Rest of the solution didn't work for my case.
I hope it will help someone else.