Advertisement
Guest User

Untitled

a guest
Jul 19th, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <script type="text/javascript">
  2.     $(function () {
  3.       var seconds = 15;
  4.       $(".moveCount").html(seconds);
  5.       var timer = setInterval(function () {
  6.         if (seconds == 0) {
  7.           clearInterval(timer);
  8.           location.href = '{{merchantRedirectUrl}}/?checkoutid={{checkoutId}}';
  9.           return;
  10.         }
  11.         seconds--;
  12.         $(".moveCount").html(seconds);
  13.       }, 1000);
  14.     });
  15. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement