Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <script type="text/javascript">
- var waktu = 12;
- setInterval(function() {
- waktu--;
- if(waktu < 0) {
- window.location = 'http://URLTarget.tld';
- }else{
- document.getElementById("countdown").innerHTML = waktu;
- }
- }, 1000);
- </script>
- Pemanggil
- <span id="countdown">10</span>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement