Advertisement
Kvarz

javascript timer app

May 8th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.42 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
  5.  
  6. </head>
  7. <body>
  8.  
  9. <p>Awesome timer app</p>
  10.  
  11. </body>
  12. <script>
  13. setInterval(function() {
  14.     // your code goes here...
  15.     //run anything you want, really
  16.     //let's print some text to the screen
  17.     console.log("Hey, it works!")
  18.    
  19. }, 6 * 1000); // 60 * 1000 milsec
  20.  
  21. </script>
  22. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement