I want to write a countdown, which get the time from a server (php) and then counts down on the client side (JavaScript). Unfortunately I have only a few experience with JavaScript or JQuery. At this time the script looks like this:

<?php 
    $endTime = mktime(00, 00, 00, 01, 01, 2012); 
    $actTime = time(); 
    $difTime = $endTime - $actTime;
    $seconds = $difTime;
?>

<script  type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.js"></script>
<script type="text/javascript">
   $(document).ready(function(){
            window.setInterval(function() {
                var seconds = $('div#timer').html();                    
                var updateTime = eval(seconds)- eval(1);                    
                $('div#timer').html(updateTime);
            }, 1000);

    });
</script>

<div id="timer"><?php echo $seconds ?></div>

Now I want to convert the remaining seconds into days, months, minutes and seconds. However, I do not really know how I should realize that with the function setInterval. Can anyone help me? Maybe there are better ways as working with the UNIX-Timestamp?

Thank you in advance!

Martin

link|improve this question

0% accept rate
1  
try and work on your accept rate – Aaron W. Dec 21 '11 at 20:43
1  
(OFFTOPIC) You have already collected 4 unaccepted answers (As you can see your acceptance rate is fair low: 0%). Read this info: meta.stackoverflow.com/questions/5234/… – Roko C. Buljan Dec 21 '11 at 20:45
Note that setInterval() (and setTimeout()) don't guarantee that the callback will be executed exactly at the interval you specified, so it's generally a good idea to get the current time on each iteration (and calculate the offset from the original server-specified time as appropriate). For the same reason you generally get a smoother looking clock if you set the interval to something significantly smaller than 1 second: say 50-100ms - that way if the interval gets a little delayed it doesn't feel like the counter jumped as much. – nnnnnn Dec 21 '11 at 21:18
feedback

4 Answers

What about using this?

http://www.labs.mimmin.com/countdown/

link|improve this answer
feedback

To use seconds is quiet the best way. And only to count down the seconds and calculate the rest from them. You just need to extend the function defined to execute every 1 second. Use mod and div with math.floor to calculate the days and hours from the seconds, build new string with it and put it into the div.

link|improve this answer
feedback

DEMO in action

 (function count(){
        var seconds = $('div#timer').text();  // the seconds returned by php
        setTimeout(function() {              
          if($('#timer').text() === '0'){ return; }
            $('#timer').text(seconds-1);
            count();
        }, 1000);
 })();
link|improve this answer
feedback

You should use this script for countdown this is a best script for countdown.
http://keith-wood.name/countdown.html

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.