Seconds Ticker using JavaScript

  1. <!DOCTYPE html>  
  2.   
  3. <html xmlns="http://www.w3.org/1999/xhtml">  
  4. <head runat="server">  
  5.     <title></title>  
  6. </head>  
  7. <body>  
  8.   
  9.     <div id="status"></div>  
  10.   
  11.     <script type="text/javascript">  
  12.          
  13.         var st = document.getElementById('status');  
  14.         function timer(secs)  
  15.         {  
  16.             st.innerHTML ="Please wait "+ secs;  
  17.             if (secs < 1)  
  18.             {  
  19.                 clearTimeout(timer);  
  20.                 return;  
  21.             }  
  22.             secs--;  
  23.            var t= setTimeout('timer('+secs+')', 1000);  
  24.         }  
  25.           
  26.         timer(10 );  
  27.     </script>  
  28. </body>  
  29. </html>