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'm currently working on a website where the content is loaded via AJAX, every piece of content has some AddThis sharing buttons.

So after the content is loaded and added into a div container, I reload the AddThis script in order to make it work again:

var script = 'http://s7.addthis.com/js/250/addthis_widget.js#pubid=myid&domready=1';
if(window.addthis) window.addthis = null;
$.getScript( script );

But when I share the page, I noticed that the title and url don't change, I did change the title manually:

var title = $(response).find('h2').text();
window.document.title = title;
window.history.pushState({path: href}, title, href);

Why won't AddThis use this new title and URL? Also for the Facebook sharing it's using the image from the first content. (probably because of the wrong url)

share|improve this question
Even when setting the addthis:url and addthis:title myself it still takes the title from the first page loaded. – woutr_be May 11 '12 at 9:24
Apparently I forgot to call addthis.update(), this fixed my problem. stackoverflow.com/questions/7514878/… – woutr_be May 11 '12 at 11:06

2 Answers

up vote 0 down vote accepted

Apparently I forgot to call addthis.update(), this fixed my problem.

AddThis buttons wont update to include fragment (#Hash Tag)

share|improve this answer

You could try this too (I found a bug in IE8, becauses AddThis uses for..in:

for(var i = 0; i < addthis.links.length; i++){
    addthis.links[i].share.url = "new url";
    addthis.links[i].share.title = "new title";
}
share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.