I'm using the ShareThis widget. I need to change the url property after the object has been created so I'm using the callback function option. In the callback function, I attempt to change the url property but the email that goes out still contains the old value.
Has anyone been able to solve this problem? If so, I would appreciate your help!
Here's a code sample
SHARETHIS.addEntry({ title: 'ShareThis'}, { onclick: myCustomCallback } function myCustomCallback(SharedObject) { SharedObject.properties.url = "http://www.myurl.com"; return true; };