Hello,
I am using the tweet button, with this asynchronous Javascript loading code below. When I place it at the bottom of my HTML the background image of the tweet button flickers, because it is loaded last.
I noticed in firebug it is pulling this via an iframe
and the image is a background specified in CSS. Is there anyway to load the image locally to override the background image in the iframe
?
var b = document.createElement('script');
b.type = 'text/javascript';
b.src = ('http://platform.twitter.com/widgets.js');
var a=document.getElementById("deferedjs");
a.parentNode.insertBefore(b,a);