Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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 :)

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.