Results 1 to 3 of 3

Thread: Sticky note - Cookie question

  1. #1
    Join Date
    Sep 2006
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Sticky note - Cookie question

    1) Script Title: Sticky note

    2) Script URL (on DD): http://www.dynamicdrive.com/dynamici...stickynote.htm

    3) Describe problem:

    This script works great. It sets a cookie so that the popup only shows up once per browser session. My problem is that I would like to put the code on every web page, and I still only want it to popup once. With the cookie the way it is setup right now, it will popup everytime the path changes.

    Can anyone tell me how to modify the script so that I can assign the cookie a path, or domain so that it only pops up once per session, across all my pages.

    Thanks

    Rock
    rlalande@cuestore.ca

  2. #2
    Join Date
    Sep 2006
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Quote Originally Posted by rlalande
    1) Script Title: Sticky note

    2) Script URL (on DD): http://www.dynamicdrive.com/dynamici...stickynote.htm

    3) Describe problem:

    This script works great. It sets a cookie so that the popup only shows up once per browser session. My problem is that I would like to put the code on every web page, and I still only want it to popup once. With the cookie the way it is setup right now, it will popup everytime the path changes.

    Can anyone tell me how to modify the script so that I can assign the cookie a path, or domain so that it only pops up once per session, across all my pages.

    Thanks

    Rock
    rlalande@cuestore.ca
    Bump - still no answer.

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

    Default

    Try finding the line:

    Code:
    document.cookie="fadedin=yes"
    and change that to:

    Code:
    document.cookie="fadedin=yes; path=/"
    That should do it.

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
  •