Advertisement
Guest User

Untitled

a guest
Nov 6th, 2021
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.05 KB | None | 0 0
  1. Select stream [1-9]: 3
  2. <script type="text/javascript">
  3.  $("#process-waiting").css('display','none');
  4.     if(typeof iWorker != 'undefined'){
  5.         clearInterval(iWorker);
  6.         iWorker = undefined;
  7.     }
  8. </script>
  9. <div class="alert alert-danger" role="alert">
  10.  <span aria-hidden="true" class="glyphicon glyphicon-exclamation-sign">
  11.  </span>
  12.  <p>
  13.   Try again in
  14.   <span id="countdowntimer">
  15.    5
  16.   </span>
  17.   seconds
  18.  </p>
  19.  <script type="text/javascript">
  20.   var timeleft = 5;
  21.             var downloadTimer = setInterval(function(){
  22.                 timeleft--;
  23.                 document.getElementById("countdowntimer").textContent = timeleft;
  24.                 if(timeleft <= 0){
  25.                    clearInterval(downloadTimer);
  26.                    window.location.reload();
  27.                }
  28.            },1000);
  29. </script>
  30.  <br/>
  31.  <p>
  32.   Try to download with
  33.   <a class="active" href="https://app.y2mate.com/download" rel="nofollow" target="_blank">
  34.    <b>
  35.     <u>
  36.      Video Downloader
  37.     </u>
  38.     ►
  39.    </b>
  40.   </a>
  41.  </p>
  42. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement