I have a page that is loaded via ajax into a contentArea on my main page and when it loads it doesn't show the sharethis buttons. Yet if the page is tested without being loaded by ajax the buttons work fine.
Main page with ajax call function:
<head> <script type='text/javascript'> function updateAcupuncture() {
var objXmlHttp;
if (window.XMLHttpRequest) {
objXmlHttp =new XMLHttpRequest();
}
else {
// for IE5 and IE6 we use ActiveX
objXmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
}
objXmlHttp.onreadystatechange=function() {
// the AJAX call has returned
if ((objXmlHttp.readyState==4) && (objXmlHttp.status==200)) { document.getElementById("contentArea").innerHTML=objXmlHttp.responseText;
}
}
objXmlHttp.open("GET","acupuncture.html",true);
objXmlHttp.send(); } </script>
<script type="text/javascript" src="http://w.sharethis.com/button/buttons.js"></script> <script type="text/javascript">stLight.options({publisher: "168fe05d-a490-44f1-91b8-e1f5c9cb131d", shorten:false});</script>
</head>
<body> <div id ="contentArea"></div>
</body>
The page loaded by ajax:
<head>
<script type="text/javascript" src="http://w.sharethis.com/button/buttons.js"></script>
<script type="text/javascript">stLight.options({publisher: "168fe05d-a490-44f1-91b8-e1f5c9cb131d", shorten:false});</script>
</head>
<body>
<span class='st_facebook_hcount' displayText='Facebook'
st_url="#" st_title="It's all about Something" st_image="#"></span>
</body>
If anybody can help that would be super!
Thank you :)