The code is below ======================= <script type="text/javascript"> <!-- function redirect() { var thecookie = readCookie('doRedirect'); if(!thecookie) { window.location = '/age-verification/'; //set the url you want to redirect to here } } //--> </script> <script type="text/javascript"> <!-- function createCookie(name,value,days) { if (days) { var date = new Date(); date.setTime(date.getTime()+(days*24*60*60*1000)); var expires = "; expires="+date.toGMTString(); } else var expires = ""; document.cookie = name+"="+value+expires+"; path=/"; } function readCookie(name) { var nameEQ = name + "="; var ca = document.cookie.split(';'); for(var i=0;i < ca.length;i++) { var c = ca; while (c.charAt(0)==' ') c = c.substring(1,c.length); if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length); } return null; } window.onload = function() { redirect(); createCookie('doRedirect','true','999'); } //--> </script> =============================== 1. How to delete the cookie on specific page, the above which has been created ? 2. When does this expire ? I want it to expire after minutes. Please help me with this... really grateful to you.
Use this code to set expiring time by minutes: if you set 0 the cookie is trashed when the user closes the browser ex: createCookie('doRedirect','true','0');