Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <head>
- <link rel="stylesheet" href="timerpage.css">
- <script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
- <script>
- $( document ).ready(function() {
- setInterval(function () {
- var d = new Date();
- $("#myimg").attr("src", "img.jpg?"+d.getTime());
- }, 1000);
- });
- </script>
- </head>
- <body>
- <div class = "container " id = "container">
- <img class="switch" id ="myimg" src="img.jpg" />
- </div>
- </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement