the_baahubali

Fetch Until Status OK

Jun 18th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. setInterval(function(){
  2.  
  3.  
  4. fetch('https://libra.org/en-US/white-paper/', {
  5.    
  6. })
  7. .then(function(response) {
  8.     console.log(response.status); // Will show you the status
  9.     if (!response.ok) {
  10.         throw new Error("HTTP status " + response.status);
  11.     }else {
  12.  
  13. location.reload();
  14.     }
  15.  
  16.     return response.json();
  17. })
  18.  
  19.  
  20.  
  21.  }, 1000);
Add Comment
Please, Sign In to add comment