Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am currently trying to create a page where a timer counts down 3 minutes and then disables the page for that user. At the moment he countdown resets on refresh which I am trying to avoid and users are blocked for a day after just viewing the page even if they refreshed before the countdown was up.

This is the countdown (from http://www.littlewebthings.com/projects/countdown/ )

 <script type="text/javascript">
jQuery(document).ready(function() {
    $('#countdown_dashboard').countDown({
        targetOffset: {
            'day':      0,
            'month':    0,
            'year':     0,
            'hour':     0,
            'min':      3,
            'sec':      0
        },
onComplete: function() { $('#button1').hide(1000) }

    });
});
</script>

<script type="text/javascript">

And here is the 24 hour page expire/block one:

 <script language ='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[i];
        while (c.charAt(0)==' ') c = c.substring(1,c.length);
        if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
    }
    return null;
   }

   /* Check the cookie and redirect if they have it set. */   

   sWhere = 'http://google.com';  // replace this with where you want them to be sent when they can't view page. 

   if(!readCookie('viewcheck')){
      createCookie('viewcheck',1,1);
   } else {
      window.location = sWhere;
   }
</script>

How could I go about creating a cookie that stores the timer value so refreshes don't matter, and then activates the 24 hour block upon the countdown completion? I have no idea how to connect these things the right way. Thanks for any help!

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.