AUTO-DATE - Data automatica personalizzata |
Questo script serve per visualizzare automaticamente la data aggiornata. Auto-Date: custom date into your webpages. Days changes automatically. |
Format 1 - ITALIANO | Format 2 - INTERNATIONAL | Format 3 - ENGLISH |
Se vuoi GRATIS degli scripts su misura per la tua pagina scrivi a mrfree@goplay.com
For FREE personal scripts e-mail to mrfree@goplay.com
Format 1
<script language="JavaScript"> <!-- Hide this script from js-challenged browsers -- var days = new Array(8); days[1] = "Domenica"; days[2] = "Lunedì"; days[3] = "Martedì"; days[4] = "Mercoledì"; days[5] = "Giovedì"; days[6] = "Venerdì"; days[7] = "Sabato"; var months = new Array(13); months[1] = "gennaio"; months[2] = "febbraio"; months[3] = "marzo"; months[4] = "aprile"; months[5] = "maggio"; months[6] = "giugno"; months[7] = "luglio"; months[8] = "agosto"; months[9] = "settembre"; months[10] = "ottobre"; months[11] = "novembre"; months[12] = "dicembre"; var dateObj = new Date() var wday = days[dateObj.getDay() + 1] var lmonth = months[dateObj.getMonth() + 1] var date = dateObj.getDate() var fyear = "19" + dateObj.getYear() document.write("<FONT COLOR=#000000 SIZE=2 FACE=ARIAL><B>" + wday + ", " + date + " " + lmonth + " " + fyear) // Done Hiding--> </script></FONT></B>
Format 2
<script language="JavaScript"< <!-- Hide this script from js-challenged browsers -- var dateObj = new Date() var date = dateObj.getDate() var syear = dateObj.getYear() var month = dateObj.getMonth() + 1 document.write("<FONT FACE=ARIAL SIZE=2 COLOR=#8306FF><B>" + date + "." + month + "." + syear) // Done Hiding--> </script>
Format 3
<script language="JavaScript"> <!-- Hide this script from js-challenged browsers -- var days = new Array(8); days[1] = "Sunday"; days[2] = "Monday"; days[3] = "Tuesday"; days[4] = "Wednesday"; days[5] = "Thursday"; days[6] = "Friday"; days[7] = "Saturday"; var months = new Array(13); months[1] = "January"; months[2] = "February"; months[3] = "March"; months[4] = "April"; months[5] = "May"; months[6] = "June"; months[7] = "July"; months[8] = "August"; months[9] = "September"; months[10] = "October"; months[11] = "November"; months[12] = "December"; var dateObj = new Date() var wday = days[dateObj.getDay() + 1] var lmonth = months[dateObj.getMonth() + 1] var date = dateObj.getDate() var fyear = "19" + dateObj.getYear() document.write("<FONT COLOR=000000 FACE=ARIAL SIZE=2><B>" + wday + ", " + lmonth + " " + date + ", " + fyear) // Done Hiding--> </script>
This page hosted by ![]() | GO BACK |