We have a Facebook app that includes web intents integration to award bonus points when users tweet about their performance. The app runs with no problem in all browsers outside of Facebook and in all browsers except IE9 when run within Facebook. The issue seems to stem from the way Facebook runs the code within an iframe.
The specific error we are seeing occurs during page load in hubclient.js (line 7): Unable to get value of the property insertBefore.
The code is integrated into our app based on https://dev.twitter.com/docs/intents/events
In the document head we have the following script to setup the twitter platform api:
<script type="text/javascript" charset="utf-8">
window.twttr = (function (d,s,id) {
var t, js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return; js=d.createElement(s); js.id=id;
js.src="//platform.twitter.com/widgets.js"; fjs.parentNode.insertBefore(js, fjs);
return window.twttr || (t = { _e: [], ready: function(f){ t._e.push(f) } });
}(document, "script", "twitter-wjs"));
</script>
We were then using a simple Follow button within the document body
<a href="https://twitter.com/clearcreativity" class="twitter-follow-button" data-show-count="false">Follow</a>
Finally, we have event bindings that are wrapped in a $(document).ready() block:
$(document).ready(function(){
twttr.ready(function (twttr) {
twttr.events.bind('tweet', function(event) {
//Notify and potentially give credit for a tweet
});
});
});