Advertisement
Guest User

Untitled

a guest
Apr 9th, 2016
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var submit = window.document.getElementById ('submit');
  2.     submit.onclick = function () {
  3.         window.localStorage.submit = 'wait';
  4.         wait ();
  5.     };
  6.  
  7. var qsubmit = window.document.getElementById ('qr-submit');
  8.     qsubmit.onclick = function () {
  9.         window.localStorage.submit = 'wait';
  10.         wait ();
  11.     };
  12.  
  13. function wait () {
  14.     if (window.localStorage.submit == 'wait') {
  15.         var time = 15;
  16.         var timer = window.setInterval ( function () {
  17.             submit.value = time--;
  18.             if (!time) {
  19.                 submit.value = 'Отправить';
  20.                 window.localStorage.submit = 'go';
  21.                 window.clearInterval (timer);
  22.             }
  23.         }, 1000);
  24.     }  
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement