PLUGIN - AddThis & AJAX & Re-Init

by bizamajig

HTML

<div id="socialmedia"> 
 Show the Social Media
</div> 

<div id="loadhere"> 

</div>

JavaScript

$("#socialmedia").click(function(){

    $.getScript('http://s7.addthis.com/js/250/addthis_widget.js#pubid=xxx',function(){

        var add_this_html =
'<div class="addthis_toolbox addthis_default_style ">'+
'<a class="addthis_button_facebook_like" fb:like:layout="button_count"></a> '+
'<a class="addthis_button_tweet"></a>'+        
'<a class="addthis_counter addthis_pill_style">'+
'</a>'+ 
'</div>';

$("#loadhere").html(add_this_html);
//    if (window.addthis){ window.addthis = null; }
//    addthis.init();
    if (window.addthis) {
    window.addthis.ost = 0;
    window.addthis.ready(); // re-initialize the addthis script, as per plugin provider
    addthis.init();
    }
});

    
    
  //$.getScript('https://apis.google.com/js/plusone.js');
});