Visitor Counter/Tracker
A Visitor counter/tracker indicates the number of visitors, or hits, a particular webpage has received. This javascript displays the count of the specified webpage visits while opening the corresponding webpage.
Features
Used to know the hits or visit counts of the specific webpage. Easy and simple to use.
Preview
Downloads
Javascript Code <!-- Script by hscripts.com --> <script type="text/javascript"> function ctck() { var sds = document.getElementById("dum"); if(sds == null){ alert("You are using a free package.\n You are not allowed to remove the tag.\n"); } var sdss = document.getElementById("dumdiv"); if(sdss == null){ alert("You are using a free package.\n You are not allowed to remove the tag.\n"); } } document.onload="ctck()"; function getCookieVal(offset) { var endstr = document.cookie.indexOf (";", offset); if (endstr == -1) endstr = document.cookie.length; return unescape(document.cookie.substring(offset, endstr)); } function GetCookie(name) { var arg = name + "="; var alen = arg.length; var clen = document.cookie.length; var i = 0; while (i < clen) { var j = i + alen; if (document.cookie.substring(i, j) == arg) return getCookieVal (j); i = document.cookie.indexOf(" ", i) + 1; if (i == 0) break; } return null; } function SetCookie (name, value) { var argv = SetCookie.arguments; var argc = SetCookie.arguments.length; var expires = (2 < argc) ? argv[2] : null; var path = (3 < argc) ? argv[3] : null; var domain = (4 < argc) ? argv[4] : null; var secure = (5 < argc) ? argv[5] : false; document.cookie = name + "=" + escape (value) +((expires == null) ? "" : ("; expires=" +expires.toGMTString())) +((path == null) ? "" : ("; path=" + path)) +((domain == null) ? "" : ("; domain=" + domain)) +((secure == true) ? "; secure" : ""); } var expDays = 30; var expDate = new Date(); expDate.setTime(expDate.getTime() + (expDays*24*60*60*1000)); function DisplayInfo() { var cnt = GetCookie('cnt'); if(cnt == null) { SetCookie('cnt','1'); return 1; } else { var cnt1 = parseInt(cnt) + 1; SetCookie('cnt',cnt1,expDate); return cnt; } } document.write("You have visited this page " + DisplayInfo() + " times."); </script> <!-- Script by hscripts.com --> <div style="font-size: 10px;color: #dadada;" id="dumdiv"> <a href="https://www.hscripts.com" id="dum" style="text-decoration:none;color: dadada;">©h</a></div>
Release Date - 11-02-2010 Get free version without ©copyright link for just $10/ -
For customization of this script or any script development, mail to support@hscripts.com
Usage
Copy and paste the javascript code into your HTML page and make use of this counter/Tracker.
Clear Cookies and make use of this script.
This script is used to count the hits of the specific webpage.
License
Related Scripts