My code looks like this:
<!-- AddThis Button BEGIN -->
<div class="addthis_toolbox addthis_default_style "
addthis:url="http://bestofyoutube.com/v/11226"
addthis:title="Japanese scary ghost prank"
addthis:description="" >
<a class="addthis_button" href="http://www.addthis.com/bookmark.php?v=250&pubid=boyt">
<img src="/images/share.gif" width="56" height="20" border="0" alt="Share" /></a>
</div>
<script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#pubid=boyt"></script>
<!-- AddThis Button END -->
The result I get is this URL(???????):
http://bestofyoutube.com/#.T6mD0UY5-OM.facebook
when I want this URL:
http://bestofyoutube.com/v/11226
please help
Lars
That code is added to do our click tracking, which gives you information about the people who return to your site from shared links. If they're causing trouble you can disable them by setting the data_track_clickback option to false like this:
<script type="text/javascript">
var addthis_config = addthis_config||{};
addthis_config.data_track_clickback = false;
</script>
More information on click tracking is available here: http://support.addthis.com/customer/portal/articles/381252-click-tracking
This question is closed to new answers.