Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

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.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7685181
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T19:11:41+00:00 2026-05-31T19:11:41+00:00

I have a little script that checks for cookies and I was wondering how

  • 0

I have a little script that checks for cookies and I was wondering how I could do it so that it did this automatically rather than on page refresh?

My code is:

if(!$.cookie("popbox")){
   if(!$.cookie("visited") && !$.cookie("firstvisit")){
      var expirydate = new Date();
      expirydate.setTime(expirydate.getTime() + (1 * 60 * 1000));
      $.cookie("popbox", "feedback_popup", { expires: expirydate });
      $.cookie("firstvisit", 1, { expires: 9999 });
   } else {
      if(!$.cookie("visited") && $.cookie("firstvisit")){
         showPopuptimer();
      }
   }
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-31T19:11:42+00:00Added an answer on May 31, 2026 at 7:11 pm

    If you mean you want the code to run periodically while the page is being shown, you can use setInterval, which will call the function you give it on a specific interval (more or less), or a chained series of setTimeout calls (setTimeout calls the function you give it once; you’d then have the function call setTimeout again). (Those links are to Mozilla documentation, but these calls exist in all browsers.)

    I tend to prefer chained serieses of setTimeout calls because it’s harder to have them get away from you; setInterval just keeps happening until/unless you call clearInterval on the handle it returns.

    So for instance:

    checkTheCookies(); // The initial check on page load
    function checkTheCookies() {
        if(!$.cookie("popbox")){
           if(!$.cookie("visited") && !$.cookie("firstvisit")){
              var expirydate = new Date();
              expirydate.setTime(expirydate.getTime() + (1 * 60 * 1000));
              $.cookie("popbox", "feedback_popup", { expires: expirydate });
              $.cookie("firstvisit", 1, { expires: 9999 });
           } else {
              if(!$.cookie("visited") && $.cookie("firstvisit")){
                 showPopuptimer();
              }
           }
        }
    
        // Schedule the next check 15 seconds later (time in milliseconds)
        setTimeout(checkTheCookies, 150000);
    }
    

    You might need an if in there for if you have some kind of pop-up showing and don’t want to do the check while the pop-up is there.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have this little script that shows one wisdom each day. so I have
I have this small script that checks if a user name and email exist
I have a little Perl script (On Windows) that checks some files for me
I have a little python script that I am using to download a whole
This is a little tricky so bear with me: I have a PHP script
I have a python script that checks a certain folder for new files and
I have a script that I am working on that I am a little
I have a little script to run a search daemon, like: run.sh : cd
I'm a jQuery newbie, and I have trouble with a little script I created.
I have a little problem with a simple vbScript. The script has to run

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.