I\'m trying to set session cookie in javascript like this:
document.cookie = \'name=alex; path=/\'
But Chrome doesn\'t delete it even if I
This maybe because Chrome is still running in background after you close the browser. Try to disable this feature by doing following:
However, I think Chrome should check and delete previous session cookies at it starting instead of closing.