11:17:47
Andre Guider:
Skiens Guiden
|
Interiør Guiden
|
Villmarks Guiden
|
Ole Brumm Starten
|
Tønsberg Guiden
Kontakt oss
Send oss en link
Reklamer hos oss
Link til oss
Kategorier:
Gratis Guiden
Internett
Din PC
Andre
Spill
Bannere
Bakgrunner
Tilbake til:
Tønsberg Guiden
Skiens Guiden
Link til oss:
www.tonsberg-guiden.com
Du er her >
Gratis Guiden Index
>
Javascript-Klokke
JavaByen - Dato
Demo:
den 6th April, 2025
Javabyen
by
JavaByen
Scritp:
Kopier all tekst nedenfor
<!-- TWO STEPS TO INSTALL ENGLISH DATE: 1. Copy the coding into the HEAD of your HTML document 2. Add the last code into the BODY of your HTML document --> <!-- STEP ONE: Paste this code into the HEAD of your HTML document --> <HEAD> <SCRIPT LANGUAGE="JavaScript"> <!-- This script and many more are available free online at --> <!-- The JavaScript Source!! http://javascript.internet.com --> <!-- Begin dayName = new Array("", "Mandag", "Tirsdag", "Onsdag", "Torsdag", "Fredag", "Lørdag", "Søndag") monName = new Array("Januar", "Februar", "Mars", "April", "Mai", "Juni", "Juli", "August", "September", "Oktober", "November", "Desember") now = new Date // End --> </script> </HEAD> <!-- STEP TWO: Copy this code into the BODY of your HTML document --> <BODY> <SCRIPT LANGUAGE="JavaScript"> <!-- This script and many more are available free online at --> <!-- The JavaScript Source!! http://javascript.internet.com --> <!-- Begin var strDay; if ((now.getDate() == 1) || (now.getDate() != 11) && (now.getDate() % 10 == 1)) // Correction for 11th and 1st/21st/31st strDay = "st "; else if ((now.getDate() == 2) || (now.getDate() != 12) && (now.getDate() % 10 == 2)) // Correction for 12th and 2nd/22nd/32nd strDay = "nd "; else if ((now.getDate() == 3) || (now.getDate() != 13) && (now.getDate() % 10 == 3)) // Correction for 13th and 3rd/23rd/33rd strDay = "rd "; else strDay = "th "; document.write( dayName[now.getDay()] + " den " + now.getDate() + strDay + " " + monName[now.getMonth()] + ", " + now.getFullYear() ) // End --> </script> <p><center> <font face="arial, helvetica" size"-2">Javabyen<br> by <a href="https://members.tripod.com/tbgguiden/id6.htm">JavaByen</a></font> </center><p> <!-- Script Size: 1.73 KB --> </script> </h2>