Moh
28-11-2007, 11:28 PM
Well at the moment this code says "xx spins." how do I make it so it says "You have been through xx spins."
Thanks, kept going wrong for me :(
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
startday = new Date();
clockStart = startday.getTime();
function initStopwatch() {
var myTime = new Date();
var timeNow = myTime.getTime();
var timeDiff = timeNow - clockStart;
this.diffSecs = timeDiff/500;
return(this.diffSecs);
}
function getSecs() {
var mySecs = initStopwatch();
var mySecs1 = ""+mySecs;
mySecs1= mySecs1.substring(0,mySecs1.indexOf(".")) + " spins.";
document.forms[0].timespent.value = mySecs1
window.setTimeout('getSecs()',500);
}
</SCRIPT>btw the code you need to edit is
mySecs1= mySecs1.substring(0,mySecs1.indexOf(".")) + " spins.";
Thanks, kept going wrong for me :(
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
startday = new Date();
clockStart = startday.getTime();
function initStopwatch() {
var myTime = new Date();
var timeNow = myTime.getTime();
var timeDiff = timeNow - clockStart;
this.diffSecs = timeDiff/500;
return(this.diffSecs);
}
function getSecs() {
var mySecs = initStopwatch();
var mySecs1 = ""+mySecs;
mySecs1= mySecs1.substring(0,mySecs1.indexOf(".")) + " spins.";
document.forms[0].timespent.value = mySecs1
window.setTimeout('getSecs()',500);
}
</SCRIPT>btw the code you need to edit is
mySecs1= mySecs1.substring(0,mySecs1.indexOf(".")) + " spins.";