I want this counter to countdown from 30 minutes so users see how much time they have left to complete their process before the user variables expire.
I can't seem to figure out the syntax for getting minutes up there. <!-- THREE STEPS TO INSTALL NUMBER COUNTDOWN: 1. Copy the coding into the HEAD of your HTML document 2. Add the onLoad event handler into the BODY tag 3. Put the last coding into the BODY of your HTML document --> <!-- STEP ONE: Paste this code into the HEAD of your HTML document --> <HEAD> <SCRIPT LANGUAGE="JavaScript"> <!-- This script and many more are available free online at --> <!-- The JavaScript Source!! http://javascript.internet.com --> <!-- Ben ([EMAIL PROTECTED]) --> <!-- Begin <!-- var g_iCount = new Number(); // CHANGE THE COUNTDOWN NUMBER HERE - ADD ONE TO IT // var g_iCount = 11; function startCountdown(){ if((g_iCount - 1) >= 0){ g_iCount = g_iCount - 1; numberCountdown.innerText = '00:00.0' + g_iCount; setTimeout('startCountdown()',1000); } } // End --> </script> </HEAD> <!-- STEP TWO: Insert the onLoad event handler into your BODY tag --> <BODY onLoad="startCountdown()"> <!-- STEP THREE: Copy this code into the BODY of your HTML document --> <font face="Digital Readout Upright" color="blue" size="7"> <div align="center" id="numberCountdown"></div> </font> <p><center> <font face="arial, helvetica" size"-2">Free JavaScripts provided<br> by <a href="http://javascriptsource.com">The JavaScript Source</a></font> </center><p> <!-- Script Size: 1.33 KB --> -- -- Dan Stein FileMaker 7 Certified Developer Digital Software Solutions 799 Evergreen Circle Telford PA 18969 Land: 215-799-0192 Cell: 610-256-2843 Fax 413-410-9682 FMP, WiTango, EDI,SQL 2000, MySQL, CWP [EMAIL PROTECTED] www.dss-db.com "It is perfectly safe to stand nowhere." ________________________________________________________________________ TO UNSUBSCRIBE: Go to http://www.witango.com/developer/maillist.taf
