I want a jQuery countdown:

  1. It starts counting after page download finishes
  2. After counting to 0 it redirects to a url

How i can do that?

Thanks in advance

link|improve this question

44% accept rate
feedback

4 Answers

up vote 40 down vote accepted
$(function(){
  var count = 10;
  countdown = setInterval(function(){
    $("p.countdown").html(count + " seconds remaining!");
    if (count == 0) {
      window.location = 'http://google.com';
    }
    count--;
  }, 1000);
});
link|improve this answer
3  
+1 for insanely fast response – czarchaic Jan 14 '10 at 13:11
@czarchaic: We specialize in those around here ;) – Jonathan Sampson Jan 14 '10 at 13:14
mmm, "setInerval -> setInterval". It would be included in such a case "clearInterval"? – andres descalzo Jan 14 '10 at 13:25
@andres, I just added a handler for the Interval for use in clearInterval(countdown). – Jonathan Sampson Jan 14 '10 at 13:26
feedback

I have create a countdown script using JQUERY, CSS and HTML. Here is my full source code. Demo link also available.

CSS Part:

<style type="text/css">
    body{ font-family: verdana; font-size:12px; }
    a{text-decoration: none;color:blue;font-weight: bold;}
    a:hover{color: gray;font-weight: bold;}
    div#my-timer{width: 400px;background: lightblue; margin:  0 auto;text-align: center;padding:5px 0px 5px 0px;}
</style>

Jquery Part:

<script type="text/javascript" src="js/jquery-1.4.2.js"></script>
    <script type="text/javascript">
        var settimmer = 0;
        $(function(){
                window.setInterval(function() {
                    var timeCounter = $("b[id=show-time]").html();
                    var updateTime = eval(timeCounter)- eval(1);
                    $("b[id=show-time]").html(updateTime);

                    if(updateTime == 0){
                        window.location = ("redirect.php");
                    }
                }, 1000);

        });
    </script>

HTML Part:

<div id="my-timer">
        Page Will Redirect with in <b id="show-time">10</b> seconds        
</div>

Demo Link: http://demos.coolajax.net/php/redirect

I hope this code will be a helpful one for you.

link|improve this answer
feedback

Are you sure, you want to use Javascript for this? You might just go with plain HTML:

<meta http-equiv="refresh" content="NUMBER_OF_SECONDS_TO_WAIT; URL=http://REDIRECT_URL/">

Put this in the header and the forward will even work on browsers without Javascript enabled.

link|improve this answer
if there is any image or problem loading the page and makes later to finish, "" NUMBER_OF_SECONDS_TO_WAIT "countdown continues or is expected to finish loading the page? – andres descalzo Jan 14 '10 at 13:20
feedback

In Himel Khan's code example posted above, I changed

if(updateTime == 0)

to

if(updateTime <= 0)

just in case somebody hits the back button after being redirected. Otherwise it will start into negative numbers and never re-redirect.

It is important to note that you should not have the code linked on the target page with this change or it will loop refresh. If you make this change, only include the script on the page with the countdown.

I assume there is a better way to accomplish this fix so maybe somebody else could add a better solution

Thank you for the code.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.