A guy I'm helping out is using an ecommerce CMS (CSCart). Their code is escapes single quotes for security reasons I presume (I'm not very good with js).
<script>
function share_click()
{
RPXNOW.loadAndRun(['Social'], function () { <--- This line gets escaped around social
var activity = new RPXNOW.Social.Activity(
"Share your comment",
"commented on 'Like My New Perfume?' on cuteoverload.com", <--- This line as well
"http://cuteoverload.com/2009/10/26/like-my-new-perfume/");
RPXNOW.Social.publishActivity(activity,
{finishCallback:function(data){
window.location = "http://google.com/"
}
});
});
}
</script>
Any ideas how I can work around this?