This question has already been answered:
There is such a code html page:
<script></script> <script type="text/javascript"> var count = 86193; var hour,min,sec; var timer = $.timer( function() { count--; hour = parseInt(count/3600); min = parseInt((count - hour*3600)/60); sec = parseInt(count - (hour*3600+min*60)); $('.count_hour').html(hour); $('.count_min').html(min); $('.count_sec').html(sec); }, 1000, true ); </script> You need to get a number from count = 86193 How can this be done? And if the title of the question does not answer the content then write below how you wrote it.