When I place the following code on my site for a nice standard +1
<!-- Place this tag where you want the +1 button to render. -->
<div class="g-plusone"></div>
<!-- Place this tag after the last +1 button tag. -->
<script type="text/javascript">
window.___gcfg = {lang: 'nl'};
(function() {
var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;
po.src = 'https://apis.google.com/js/plusone.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);
})();
</script>
It does something I do not want.
Without this code I only have my own phpsessid which is needed to have my site functioning.
With this code the following cookies are dropped from the domain plusone.google.com
Now, when looking at the expiration date, somewhere in 2014, 2022, 2013... they will live a very long long time.
Point is, nowhere is documentation readily accessible how to disable the placement of cookies by google+1 button, i've done my best to look, even read a lot of stack overflow posts in the hope to find something related.
I did however find how to disable cookies for analytics in my quest(hurray!) but now I need to find a way, javascript option or something to tell plusone not to drop cookies(long live dutch/european cookielaw)
The Question: Has anyone ever encountered the documentation/option to tell +1 button not to drop cookies?