Advertisement
Guest User

Untitled

a guest
Feb 27th, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8"/>
  5. <link rel="stylesheet" href="style.css">
  6. <script>
  7.  
  8. var n = 0;
  9. var minuty = document.getElementById("minut");
  10.  
  11. function prost() {
  12. var textB = document.getElementById("kwadrat");
  13. textB.innerHTML = n;
  14. if (n < 100) (setInterval(function(){n = n + 1;}, 1000));
  15. setInterval(function(){textB.innerHTML = n;}, 1000);
  16. }
  17. </script>
  18. </head>
  19. <body onload="prost()" id="body">
  20. <div id="kwadrat">
  21. </div>
  22. <div id="minut">
  23. </div>
  24. </body>
  25. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement