Advertisement
pvpunikalnypvp

Untitled

Dec 13th, 2022
333
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1.  
  2. <script>
  3. function Setup() {
  4. obj = document.getElementById("submit");
  5. obj.onclick = Functions;
  6. }
  7.  
  8. function Functions()
  9. {
  10. HideSubmit();
  11. Time();
  12. }
  13.  
  14. function HideSubmit() {
  15. obj = document.getElementById("submit");
  16. obj.style.display = "none";
  17. }
  18.  
  19. function Time(i) {
  20. if (!i) var i = 5;
  21. obj2 = document.getElementById("clock");
  22. obj2.firstChild.nodeValue = "Czekaj: " + i + " sekund";
  23. i--;
  24. setTimeout("Time("+i+")", 1000);
  25. if (i == 0){
  26. window.location="";
  27. }
  28. }
  29.  
  30. window.onload = function(){Setup();};
  31. </script>
  32. <input type="submit" id="submit" value="Click!" /><br />
  33. <span id="clock">Kliknij</span>
  34.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement