Results 1 to 2 of 2

Thread: Simple Tree Menu cookie lifetime

  1. #1
    Join Date
    Nov 2007
    Posts
    12
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Simple Tree Menu cookie lifetime

    http://www.dynamicdrive.com/dynamicindex1/navigate1.htm

    I need to change cookie life time until the browser is closed, I don need to disable persistence.
    Default value is 1 day. Its setting up in js file, dont know how to change it.

  2. #2
    Join Date
    Aug 2004
    Posts
    10,143
    Thanks
    3
    Thanked 1,008 Times in 993 Posts
    Blog Entries
    16

    Default

    You can change it to session only by editing the below line inside the .js file, specifically, removing the part in red:

    Code:
    document.cookie = name+"="+value+"; expires="+expireDate.toGMTString()+"; path=/";

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •