Forum Moderators: open
I saw a previous post that indicated that the AddThis Javascript file could be customized using this process:
`````````````````````````
function addthis_click()
{
var aturl ='http://www.addthis.com/bookmark.php';
aturl+='?v=10';
aturl+='&pub='+'my_addthis_id';
aturl+='&url='+encodeURIComponent(location.href);
aturl+='&title='+encodeURIComponent(document.title);
window.open(aturl,'addthis','scrollbars=yes,menubar=no,width=620,height=620,resizable=yes,toolbar=no,location=no,status=no,screenX=200,screenY=100,left=200,top=100');
return false;
}
And I can load the graphic from my own server.
`````````````````````````
But I am not sure what the complete code would be to do this. Can I simply imbed the Javascript command into my HTML or do I need to have a separate .js file residing on my server?
Many thanks for helping the ignorant here...