Html / Javascript Help Needed.

Discussion in 'HTML & Website Design' started by hansab, Feb 15, 2013.

  1. #1
    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.
     
    hansab, Feb 15, 2013 IP
  2. abyse

    abyse Notable Member

    Messages:
    346
    Likes Received:
    9
    Best Answers:
    1
    Trophy Points:
    245
    #2
    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');
     
    abyse, Feb 16, 2013 IP