Thread: Javascript
View Single Post
Old 06-14-05, 02:12 PM   #6 (permalink)
nomadmatt
Aximsite Major League
 
nomadmatt's Avatar
Senior Member
 
Join Date: Aug 2004
Location: Hillsboro OR
Posts: 355
Device: AT&T Tilt
Carrier: What do you think
Thanked 0 Times in 0 Posts

Awards Showcase
Aximsite Contest Winner 
Total Awards: 1

try looking here for the script Http://java-scripts.net what were i got my count down timer that redirects

<!--Customize the time (90) and dest URL to your own-->
<script language="Javascript">
<!--
/*
This credit must stay here for use
For this script, visit java-scripts.net
or http://wsabstract.com
*/

var countdown = "10"

function doCount() {
if (countdown > 0) {
countdown--
}
else {
document.location = "yourpage.html"
}

window.status=countdown + " countdown to doom."
setTimeout('doCount()',1000)
}

doCount()
//-->

</SCRIPT>
edit there the script

Last edited by nomadmatt; 06-14-05 at 02:15 PM.
nomadmatt is offline   Reply With Quote