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'm loading two Facebook like buttons on the page and keeping one hidden.

Using the edge.create event I am showing the second like button after the first one appears. This works great in all browsers, except IE.

Take a look at it in action here: http://coolkidz.com/join

After you click "Like" (top right corner) a second like button should appear along with a message, inviting you to like the organization's fan page.

Any ideas what might be going on in IE?

Update

By the way, this did work earlier in the year. A relatively recent update on Facebook's end seems to have caused the trouble.

share|improve this question

1 Answer

up vote 3 down vote accepted
+100

Actually, I’m not seeing the second like button in Firefox as well – because the <span> element around it and the iframe as well are set to width:0; height:0;

Any ideas what might be going on in IE?

It think it is problematic in IE to try to render XFBML elements that are currently hidden from the page. Try making the element visible first, and run FB.XFBML.parse on it explicitly afterwards.

share|improve this answer
Thanks for the suggestion! I don't believe I'm setting any width or height on the span - knowing that you're having trouble seeing it in Firefox is very helpful, though - I will take a closer look. Also, thanks for the visibility suggestion - I will give that a go! – Jonathan Wold Sep 13 '12 at 17:46
I wound up going a different route - setting the width and height of the div to 0 (then to auto) rather than display:none. You tipped me in the right direction, though - so thank you! – Jonathan Wold Sep 17 '12 at 6:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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