inherit
154959
0
Aug 8, 2010 9:08:16 GMT -8
1000phoenix
13
June 2010
1000phoenix
|
Post by 1000phoenix on Jun 21, 2010 11:04:14 GMT -8
Description: I modified a date code that works on my site to make this clock code but its not showing
Experienced By: Everyone
Web Browser: Internet Explorer
Forum URL: Not Provided
Code: <script language="JavaScript">
time= new Time();
min = time.getMinutes(); today.getMinutes(); hour = time.getHours(); if (hour == 0){hour = "12"} if (hour == 13){hour = "1"} if (hour == 14){hour = "2"} if (hour == 15){hour = "3"} if (hour == 16){hour = "4"} if (hour == 17){hour = "5"} if (hour == 18){hour = "6"} if (hour == 19){hour = "7"} if (hour == 20){hour = "8"} if (hour == 21){hour = "9"} if (hour == 22){hour = "10"} if (hour == 23){hour = "11"}
document.write(hour + ":" + min)
</script>
|
|