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...

This is the 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