A Website Access Counter : Cookie : Development : JavaScript DHTML examples (example source code) Organized by topic

JavaScript DHTML
C++
PHP
JavaScript DHTML Home »  Development   » [  Cookie  ]   
 



A Website Access Counter

Please note that some example is only working under IE or Firefox.


/*
Mastering JavaScript, Premium Edition
by James Jaworski 

ISBN:078212819X
Publisher Sybex CopyRight 2001
*/
<HTML>
<HEAD>
<TITLE>Keeping track of Web site access</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 insertSiteCounter() {
 readCookie()
 displayCounter()
}
function displayCounter() {
 document.write('<HALIGN="CENTER">')
 document.write("Welcome! You've accessed this site ")
 if(counter==1document.write("for the first time.")
 else document.write(counter+" times!")
 document.writeln('</H3>')
}
function readCookie() {
 var cookie=document.cookie
 counter=0
 if(nameDefined(cookie,"siteCount"))
  counter=parseInt(getCookieValue(cookie,"siteCount"))
 ++counter
 var newCookie="siteCount="+counter
 newCookie += "; expires=Wednesday, 10-Nov-10 23:12:40 GMT"
 newCookie += "; path=/"
 window.document.cookie=newCookie
}
// --></SCRIPT>
</HEAD>
<BODY BGCOLOR="#FFFFFF">
<SCRIPT LANGUAGE="JavaScript"><!--
insertSiteCounter()
// --></SCRIPT>
<H1 ALIGN="CENTER">Keeping track of Web site access</H1>
</body>
</HTML>

           
       
Related examples in the same category
1.  Reads, writes and deletes current Web page's cookiesHas Download File
2.  'cookieEnabled' Example
3.  Create a cookie
4.  Reads, writes and deletes current Web page's cookies
5.  Standard cookie functions: extract Cookie Value
6.  Save name to cookie
7.  Cookie set, delete, get value and create
8.  Cookie utility function
9.  Cookie install and delete (remove)
10.  Cookie: retrieve a future expiration date in proper format
11.  A Cookie Example
12.  A Cookie Test Program
13.  Quiz Program base on Cookie
14.   Keeping Track of User Access Time
15.  Bill Dortch's Cookie Functions
16.  Cookie PreferencesHas Download File
























Home| Contact Us
Copyright 2003 - 04 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.