Advertisement
Guest User

Untitled

a guest
Apr 9th, 2016
109
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. function wait () {
  8.     if (window.localStorage.submit == 'wait') {
  9.         var time = 15;
  10.         var timer = window.setInterval ( function () {
  11.             submit.value = time--;
  12.             if (!time) {
  13.                 submit.value = 'Отправить';
  14.                 window.localStorage.submit = 'go';
  15.                 window.clearInterval (timer);
  16.             }
  17.         }, 1000);
  18.     }  
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement