Facebook Like Button Shows in Firefox but not IE - JS errors
I have a face开发者_JS百科book like button and it is working in Firefox but on IE I am getting javascript errors and the button is not showing up:
http://www.bluevoice.org/webfilms_killingattaiji.php
Any guidance would be most appreciated. Not sure what I need to correct in the code. I used the html5 code generated on FB and have the app all set up.
Thank you.
Typically this is because your html tag is wrong -- IE can't handle custom elements (e.g., "<fb:like>
") without an html namespace. You've got them defined, but I'm wondering if all the extra elements are confusing IE.
Try:
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com/2008/fbml">
精彩评论