So i have the following Facebook code so i can have "like" buttons on my site:
<body>
<div id="fb-root"></div>
(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_US/all.js#xfbml=1";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
window.fbAsyncInit = function() {
FB.init({
appId : 'the_app_id', // App ID
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true // parse XFBML
});
// Additional initialization code here
};
// Load the SDK Asynchronously
(function(d){
var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
if (d.getElementById(id)) {return;}
js = d.createElement('script'); js.id = id; js.async = true;
js.src = "//connect.facebook.net/en_US/all.js";
ref.parentNode.insertBefore(js, ref);
}(document));
This is the first thing in the "body" section. Above the body (aka the head) there are two more script tags. One has google code for google analytics, and the other has all the jquery stuff the site actually has.
When i load a page, checking firefox web console, I can see multiple - 20? 30? calls to the facebook page like this
Sorry, make that 50 or so? Why would this be happening? Is this what the facebook api always does, or is it likely that i'm, um, what could i be doing?