[Fixed]-How to load correctly addthis widget js?

1👍

You can wrap your function around window.load like below

$(window).load(function() {
    addthis.sharecounters.getShareCounts('facebook', function(obj) {
        console.log(obj);
    });
})

This will ensure that the code will get executed once entire window is loaded. For further reading read this.

Leave a comment