I can't find the thread where I got this code, but the problem is it gives the wrong day ie - Tuesday 17th of April 2006 00:08:55 A.M. :cross-eyed:
Here's the code, can someone fix it please?;
#########################################
Adds a clock to your navbar:
Install:
Edit navbar:
find:
Quote:
<if condition="$show['pmstats']"><br /><phrase 1="$vbphrase[unread_x_nav_compiled]" 2="$vbphrase[total_x_nav_compiled]" 3="$session[sessionurl_q]">$vbphrase[private_messages_nav]</phrase></if>
|
add after:
Quote:
<div id="clock">Loading...</div>
<script type="text/javascript">
try
{
function refrClock()
{
var d=new Date();
var s=d.getSeconds();
var m=d.getMinutes();
var h=d.getHours();
var day=d.getDay();
var date=d.getDate();
var month=d.getMonth();
var year=d.getFullYear();
var days=new Array("Monday","Tuesday","Wednesday","Thursday","F riday","Saturday","Sunday");
var months=new Array("January","February","March","April","May"," June","July","August","Septemb er","October","November","December");
var am_pm;
if (s<10) {s="0" + s}
if (m<10) {m="0" + m}
if (h<10) {h="0" + h}
if (h>12) {h-=12;am_pm = "P.M."}
else {am_pm = "A.M."}
document.getElementById("clock").innerHTML=days[day] + " " + date + "th of " + months[month] + " " + year + " " + h + ":" + m + ":" + s + " " + am_pm;
setTimeout("refrClock()",1000);
}
refrClock();
}
catch (error)
{
alert(error.description);
}
</script>
|
Save and done!
##############################################