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 am adding facebook comments to my HTML5 web application. Using the HTML5 Mobile Boilerplate.

First I created a facebook app in developers panel.

I then added this to the head of my web app head.

<meta property="fb:app_id" content="300792329933514"/>



I then added facebook comments to my area on the site using...

<div class="fb-comments" data-href="<?php echo get_permalink( $id ); ?>" data-num-posts="2" data-width="470"></div>

<div id="fb-root"></div>
<script>(function(d, s, id) {
    var js, fjs = d.getElementsByTagName(s)[0];
    if (d.getElementById(id)) return;
    js = d.createElement(s); js.id = id;
    js.src = "//connect.facebook.net/en_GB/all.js#xfbml=1&appId=300792329933514";
    fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
</script>



This is not inside any divs which is generated by javascript, completely clean straight markup.

Also it works perfect on desktop browsers, iPad (iOS 4.3.5), iPad2 (iOS 5) and iPhone 3 (iOS 4.2.1)

But on my iPhone 4 (iOS 5) I get this...

Comments not loading, infinite loader bar



This is the javascript log...

javascript log



http://connect.facebook.net/en_GB/all.js 1 XFBML tags failed to render in 30000ms

It's very strange the comments load fine on older devices/older versions of iOS, desktop browers, just my iPhone 4.

I can't even debug it because my console is clean of errors/logs on desktop browsers.

Does anyone have any ideas to why this maybe happening or what I'm doing wrong?

Many Thanks
Josh

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.