A Cookie to display the number of times Visit-2
This script keeps track of the number of times a surfer has visited your page, and alerts the surfer of this information.First of all Log In your Blogger and GO to Dash Board and click on the '' layout '' .A new window will open Now click on the '' + ADD A GADGET '' a new window will open in your browser . a lot of gadget will open select '' HTML Java Script '' and copy the Code which is given below paste the code below the content and ''Save the Script''. Your setting is done.
Another Procedure of A Cookie to display the number of times Visit-2 with the help of Screen Shoot.
Another Short procedure of A Cookie to display the number of times Visit-2
- Sign in to your dashboard and Go to> layout>Page Elements
- Click on ''Add a Gadget'' on the sidebar.
- Select 'HTML/JavaScript' and add the code given below and click save button.
- <SCRIPT LANGUAGE="JavaScript">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" : "");
}
function DisplayInfo() {
var expdate = new Date();
var visit;
expdate.setTime(expdate.getTime() + (24 * 60 * 60 * 1000 * 365));
if(!(visit = GetCookie("visit")))
visit = 0;
visit++;
SetCookie("visit", visit, expdate, "/", null, false);
var message;
if(visit == 1)
message=" Welcome to my page!";
if(visit== 2)
message=" I see you came back !";
if(visit == 3)
message=" Oh, it's you again!";
if(visit == 4)
message=" You must be curious!";
if(visit == 5)
message=" You're practically a regular!";
if(visit == 6)
message=" You need a hobby!";
if(visit == 7)
message=" Nothing better to do?";
if(visit == 8)
message=" Don't you ever sleep?";
if(visit == 9)
message=" Get a life!!!";
if(visit >= 10)
message=" Rent is due on the 1st of the month!";
alert("\n"+"Your browser has visited this page \n"
+" "+visit+"\n"
+" time(s)."+"\n"+"\n"
+message);
}
function ResetCounts() {
var expdate = new Date();
expdate.setTime(expdate.getTime() + (24 * 60 * 60 * 1000 * 365));
visit = 0;
SetCookie("visit", visit, expdate , "/", null, false);
history.go(0);
}window.onload=DisplayInfo
</Script>
Now you are done.Refresh your site to see result.Look at the example below.
Thank you for watching this post Cookie to display the number of times Visit if you face any problem related with your blog then contact us or comment us .we will replay as soon as soon is possible .you can mail us
civilinfo95@gmail.com
0 Response to "A Cookie to display the number of times Visit-2"
Posting Komentar