Is there a way to delete ALL cookies upon leaving the web application automatically ?
knowing that he can leave the web page by clicking on a link, closing tab, clicking on home page button, etc.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The cookie would save in client’s machine, if you want to close cookie on close window you can set a session cookie, will automatically expire when session closed. but if you want to close cookie on close tab you can use javascript event on close tab such as window.onclose to delete all cookies.