Sharethis wrote a cookie with no name (value "sharethis_cookie_test") to my website and it's causing a lot of session problems for me (on Chrome). I've removed the sharethis plugin from my site, but the cookie will still be on users' machines.
document.cookie
prints out "__sharethis_cookie_test__; sessionid=kb0akjqdu..."
How do I remove a cookie with no name? When I try to expire the cookie via
document.cookie = "__sharethis_cookie_test__=;expires=Thu, 01 Jan 1970 00:00:00 GMT";
... it doesn't work. Thoughts?