I have implemented the Facebook like button on a web site, but I notice that when the page is loaded in Internet Explorer, the page shudders when the Facebook like button appears.
This problem does not occur in other browsers.
I link to the script at the bottom of the source code, just before the tag, as follows:
Moving the script to the Head part of the code makes no difference, the problem still occurs.
The script is as follows:
(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=121481391273495";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
Any ideas on why this happens and can it be fixed?
Thanks.