-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMiscJScodes
More file actions
27 lines (21 loc) · 733 Bytes
/
Copy pathMiscJScodes
File metadata and controls
27 lines (21 loc) · 733 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# handy count down timer found at: https://www.apphp.com/index.php?snippet=javascript-redirect-with-timer
<script type="text/javascript">
var count = 6;
var redirect = "https://www.apphp.com";
function countDown(){
var timer = document.getElementById("timer");
if(count > 0){
count--;
timer.innerHTML = "This page will redirect in "+count+" seconds.";
setTimeout("countDown()", 1000);
}else{
window.location.href = redirect;
}
}
</script>
Our webpage has beed moved. Please update your bookmarks for the new site.
<br>
<span id="timer">
<script type="text/javascript">countDown();</script>
</span>
=============================================================================