how to delete jquery cookie on tab close
问题 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 not deleted and open the same preserved cookie state page when i open the website How to delete a cookie when a user closes a Browser tab ? Below is my code $(document).ready(function(){ var href = $.cookie("activeElementHref"); if(href!==null) { setContainerHtml(href); }; $('nav ul li a').click(function(e){ e.preventDefault();