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 put a facebook like box on a website i've created, and on my computer it all works fine (safari, chrome, firefox, ie, ...)

But when some of my friends open the website in safari, de box won't show to everybody. (so some friends can see it in safari, with others it just won't show/appears and disappears immediatly/...)

Here's the iframe-code i've included

<iframe src="//www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Fwww.facebook.com%2Fpages%2FLuca-Barassii%2F126244157780&width=300&height=340&colorscheme=dark&show_faces=true&border_color&stream=false&header=false" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:300px; height:340px;" allowTransparency="true"></iframe>

hope anyone can help me... :)

share|improve this question

1 Answer

This is most likely due to their version of Safari. This browser's webkit had problems interpreting ampersands in urls in a previous version, encoding the & to &#38; instead of &amp; in xhtml pages. This was fixed in a later Webkit.

But to make sure, you can encode your iframe url yourself:

<iframe src="//www.facebook.com/plugins/likebox.php?
    href=http%3A%2F%2Fwww.facebook.com%2Fpages%2FLuca-Barassii%2F126244157780
    &amp;width=300&amp;height=340&amp;colorscheme=dark&amp;show_faces=true
    &amp;border_color=&amp;stream=false&amp;header=false" 
    scrolling="no" 
    frameborder="0" 
    style="border:none; overflow:hidden; width:300px; height:340px;" 
    allowTransparency="true">
</iframe>

This would not have stopped the box from not showing in specific (older) versions of Safari though, because the ampersands would still have been encoded incorrectly.

share|improve this answer

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.