Keeping Track of User Access Time : Cookie « Development « JavaScript DHTML

JavaScript DHTML
1. Ajax Layer
2. Data Type
3. Date Time
4. Development
5. Document
6. Event
7. Event onMethod
8. Form Control
9. GUI Components
10. HTML
11. Javascript Collections
12. Javascript Objects
13. Language Basics
14. Node Operation
15. Object Oriented
16. Page Components
17. Security
18. Style Layout
19. Table
20. Utilities
21. Window Browser
Microsoft Office Word 2007 Tutorial
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
C# / CSharp Tutorial
ASP.Net
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
PHP
Python
SQL Server / T-SQL
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
JavaScript DHTML » Development » Cookie 
Keeping Track of User Access Time


/*
Mastering JavaScript, Premium Edition
by James Jaworski 

ISBN:078212819X
Publisher Sybex CopyRight 2001
*/
<HTML>
<HEAD>
<TITLE>Keeping track of Web site access time</TITLE>
<SCRIPT LANGUAGE="JavaScript"><!--
function nameDefined(c,n) {
 var s=removeBlanks(c)
 var pairs=s.split(";")
 for(var i=0;i<pairs.length;++i) {
  var pairSplit=pairs[i].split("=")
  if(pairSplit[0]==nreturn true
 }
 return false
}
function removeBlanks(s) {
 var temp=""
 for(var i=0;i<s.length;++i) {
  var c=s.charAt(i)
  if(c!=" "temp += c
 }
 return temp
}
function getCookieValue(c,n) {
 var s=removeBlanks(c)
 var pairs=s.split(";")
 for(var i=0;i<pairs.length;++i) {
  var pairSplit=pairs[i].split("=")
  if(pairSplit[0]==nreturn pairSplit[1]
 }
 return ""
}
function insertTimeCounter() {
 today = new Date()
 startTime = today.getTime()
 readCookie()
 displayCounter()
 setInterval("setCookie()",1000)
}
function displayCounter() {
 document.write('<HALIGN="CENTER">')
 document.write("Welcome! You've accessed this site ")
 if(prevTime==0document.write("for the first time.")
 else document.write("over "+displayTime())
 document.writeln('</H3>')
}
function displayTime() {
 var seconds=Math.round(prevTime/1000)
 var minutes=Math.round(seconds/60)
 var hours=Math.round(minutes/60)
 if(seconds<60return ""+seconds+ " seconds."
 else if(minutes<60return ""+minutes+ " minutes."
 else return ""+hours+" hours "
}
function readCookie() {
 var cookie=document.cookie
 prevTime=0
 if(nameDefined(cookie,"timeCount"))
  prevTime=parseInt(getCookieValue(cookie,"timeCount"))
}
function setCookie() {
 now = new Date()
 endTime = now.getTime()
 duration = endTime-startTime
 var newCookie="timeCount="+(prevTime+duration)
 newCookie += "; expires=Wednesday, 10-Nov-10 23:12:40 GMT"
 newCookie += "; path=/"
 window.document.cookie=newCookie
}

// --></SCRIPT>
</HEAD>
<BODY BGCOLOR="#FFFFFF">
<SCRIPT LANGUAGE="JavaScript"><!--
insertTimeCounter()
// --></SCRIPT>
<H1 ALIGN="CENTER">Keeping track of Web site access time</H1>
<P ALIGN="CENTER">[The rest of the Web page goes here.]</P>
</BODY>

           
       
Related examples in the same category
1. Reads, writes and deletes current Web page's cookies
2. 'cookieEnabled' Example
3. Create a cookie
4. Standard cookie functions: extract Cookie Value
5. Save name to cookie
6. Cookie set, delete, get value and create
7. Cookie utility function
8. Cookie install and delete (remove)
9. Cookie: retrieve a future expiration date in proper format
10. A Cookie Example
11. A Cookie Test Program
12. Quiz Program base on Cookie
13.  A Website Access Counter
14. Bill Dortch's Cookie Functions
15. Cookie Preferences
w_w_w___._j_a__v_a___2__s_.co__m | Contact Us
Copyright 2003 - 08 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.