Programm Hilfe Website X5

Suche

Direkt zum Seiteninhalt

Hauptmenü


Visit Counter

Codeschnipsel

Visit Counter

Helfen Sie Ihrem Besucher herauszufinden, wann er das letzte Mal auf Ihrer Homepage war.


Folgendes kommt in den Headbereich unter Eigenschaften der Seite > Erweitert


<script language="javascript">
<!--
readCookie();
function readCookie() {
if (document.cookie == "") {
writeCookie();
alertMessage();
} else {
var the_cookie = document.cookie;
the_cookie = unescape(the_cookie);
the_cookie_split = the_cookie.split(";");
for (loop=0;loop<the_cookie_split.length;loop++) {
var part_of_split = the_cookie_split[loop];
var find_name = part_of_split.indexOf("nfti_date")
if (find_name!=-1) {
break;
} // Close if
} // Close for
if (find_name==-1) {
writeCookie();
} else {
var date_split = part_of_split.split("=");
var last = date_split[1];
last=fixTheDate(last);
alert ("WelcomenYour last visit was on: "+last);
writeCookie();
} // Close if (find_name==-1)
}
} // Close function readCookie()
function writeCookie() {
var today = new Date();
var the_date = new Date("December 31, 2023");
var the_cookie_date = the_date.toGMTString();
var the_cookie = "nfti_date="+escape(today);
var the_cookie = the_cookie + ";expires=" + the_cookie_date;
document.cookie=the_cookie
}
function alertMessage(){
alert ("WelcomenThis is your first visit here.")
}
function fixTheDate(date) {
var split = date.split(" ");
var fix_the_time = split[3].split(":")
var hours = fix_the_time[0]
if (hours>=12) {
var ampm="PM"
} else {
var ampm="AM"
}
if (hours > 12) {
hours = hours-12
}
var new_time = hours+":"+fix_the_time[1]+" "+ampm
var new_date = split[0]+" "+split[1]+", "+split[2]+" at "+new_time+", "+split[5]
return new_date;
}
//-->
</script>



Und in den Body (HTML Feld oder Textfeld)


Drücken Sie F5 um das Script auszuführen!



Hinweis

Nicht alles funktioniert in jedem Browser!

www.smsohneabo.de
Pagerank
Aktualisiert am 30 Sep 2011
PageRank Verifizierung www.websitex5.kmp-design.de

Diese Seite weiterempfehlen...


Zurück zum Seiteninhalt | Zurück zum Hauptmenü