3
Add this to your theme wherever you want the date and time to display;
< script >
document.write(Date()+".")
< /script >
or...have the date and time displayed in the status bar;
This is a simple one. Just paste the following script into
the < head > ... < /head > of your page. There are no
other set-ups needed.
< script language="JavaScript" >
< !--
// ==========================
// (C) 2000 by CodeLifter.com
//
http://www.codelifter.com// Free for all users, but leave in this header
function doTheClock() {
window.setTimeout( "doTheClock()", 1000 );
t = new Date();
if(document.all || document.getElementById){
document.title = t.toString();
}else{
self.status = t.toString();
}
}
doTheClock()
//-- >
< /script >
*** If you copy and paste, don't forget to take the spaces out of the tag containers!