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 quit browser and launch it again.
I checked in Firefox and Opera and both work as intended - they delete session cookie on browser exit.
Is Chrome just ignoring expiration rules?
I checked in multiple OSes and found out that session cookie gets removed on Chrome in Windows XP and Ubuntu, but NOT in Mac OSX Lion.
A simple alternative is to use the new sessionStorage object. Per the comments, if you have 'continue where I left off' checked, sessionStorage will persist between restarts.
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.
Google chrome has a problem if you set and unset cookie improper way. This is php code. Thought this will give you idea.
Set cookie
Wrong way and will not work (notice PATH is missing)
Correct way fixes issue on google chrome
Have you tried to Remove hangouts extension in Google Chrome? because it forces chrome to keep running even you close all the windows.
I was also facing the problem but it resolved now.
I just had this issue. I noticed that even after I closed my browser i had many chrome processes running. Turns out theses were each from my chrome extension.
Under advanced settings I unchecked
'Continue running background apps when Google Chrome is closed'
and my session cookies started working as they should.Still a pain the the rear for all of us developers that have been coding expecting that session cookies would get cleared when the user is done browsing
I had to both, unchecked, under advanced settings of Chrome :