Hi,
I'm having the following issue.
I'm loading content through Ajax., Each block loading have this addthis block :
<div class="addthis_toolbox addthis_default_style addthis_16x16_style" addthis:url="'+site_url+'jobs.html?jobid='+job.jobnumber+'" addthis:title="'+jobtitle(job.title)+'">
<a class="addthis_button_facebook"></a><a class="addthis_button_twitter"></a>
<a class="addthis_button_google_plusone_share"></a>
<a class="addthis_button_linkedin"></a>
<a class="addthis_button_email"></a>
</div>
Once a bunch of blocks is loaded, I'm running this to parse the new content and have the addthis buttons active :
var script = 'http://s7.addthis.com/js/250/addthis_widget.js#pubid=##-############?domready=1';
if (window.addthis){
window.addthis = null;
}
$.getScript( script );
This works great on desktop browsers, However on iOS, there is one issue only with the google plus one share button. When I click on it on an iOs device (tested on iPhone 4S, 3GS and iPad 2) I get to an addthis error page saying : "You supplied an invalid value for the parameter 'dest'.
I'm a bit puzzle since it seems to be working well in many cases.
Thanks you for your help,
Florian