My cookie is working fine i m not mentioning date so when the browser window is closed the cookie is deleted.
but when i close a tab in a browser window the cookie is no
You have to delete the cookie on .unload event
.unload
$(window).unload(function() { $.cookies.del('myCookie'); });