amiick Admin
Honors : 142 Age : 34 Location : cavite Warnings : FW Mood: : Honors : 57874 Registration date : 2009-01-15
| Subject: VIEWERS TIME SPENT Thu Jan 15, 2009 9:39 am | |
| no need to compile okiie - Spoiler:
<html> <head> <!-- This file retrieved from the JS-Examples archives http://www.js-examples.com 1000s of free ready to use scripts, tutorials, forums. Author: Artem - http://javascript4free.by.ru -->
</head> <body>
<CENTER><form name=exf1> <font face=arial color=grey size=2>Time spent on u spent in my page:</font> <input size=9 name=timespent> </form><p>
<script> startday = new Date(); clockStart = startday.getTime();
function initStopwatch() { var myTime = new Date(); var timeNow = myTime.getTime(); var timeDiff = timeNow - clockStart; this.diffSecs = timeDiff/1000; return(this.diffSecs); } initStopwatch();
function getSecs() { var mySecs = initStopwatch(); var mySecs1 = ""+mySecs; mySecs1= mySecs1.substring(0,mySecs1.indexOf(".")) + " secs."; document.exf1.timespent.value = mySecs1 window.setTimeout('getSecs()',1000); } getSecs(); </script>
</body> </html> preview:http://nicholia.fileave.com/TimeSpent.html credits nicholia of hcg | |
|