Advertisement
Guest User

Untitled

a guest
Dec 11th, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. <!DOCTYPE>
  2. <html>
  3. <head>
  4. <meta charset="utf-8" />
  5. <title>Strona w js</title>
  6. <meta name="description" content="asd" />
  7. <meta name="keywords" content="asd" />
  8. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
  9. </head>
  10. <body>
  11.  
  12. <div id="zegar"></div>
  13.  
  14. <script>
  15.  
  16. function zegar()
  17. {
  18. var x = new Date();
  19. var g = x.getHours();
  20. if (g<10) g = "0" + g;
  21. var m = x.getMinutes();
  22. if (m<10) m = "0" + m;
  23. var s = x.getSeconds();
  24. if (s<10) s = "0" + s;
  25.  
  26. document.getElementById("zegar").innerHTML = g + ":" + m + ":" + s;
  27. setTimeout("zegar()",1000);
  28. }
  29.  
  30. </script>
  31.  
  32. </body>
  33. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement