I am loading all articles with Ajax but Addthis functionality is not correct
$thisChild.load( permLink + \' #thePostStuff\', function() {
And
After 1 hour of trying custom codes i found this one that works perfect.
$(document).ajaxStop(function() {
if (window.addthis) {
window.addthis = null;
window._adr = null;
window._atc = null;
window._atd = null;
window._ate = null;
window._atr = null;
window._atw = null;
}
return $.getScript("http://s7.addthis.com/js/300/addthis_widget.js#pubid=sdive");
});
This is the source