If you are seeing this message, it is possible the page did not load properly. Please hit reload/refresh on your browser.
If you still see this message, you probably do not have a browser that supports web standards, although its content is accessible to any browser or Internet device.

Cool Tips & Tricks Cool Tips & Tricks

Help Communities:
Help Forums Bug Base
<< Prev Topic | Next Topic >>
Cool Tips & Tricks ::: Javascript FAQ ::: A small clock for your board
New Topic    Add Reply
Topic: A small clock for your board  (?)  Click to receive email notification of replies Click to stop receiving email notification of replies email this topic to a friend
Nutrocker

ezboard Moderator
ezSupporter
Posts: 15903
Posted: 6/16/05 2:54 pm    
A small clock for your board
A vbscript (IE only) version by Awesome Andrew

Box 1
 
<script Language="VBscript">
'Auto Time
'Awesome AnDrEw
Function TimeMachine()
window.setInterval "TimeThis()",1000
End function

Function TimeThis()
mytime.innerHTML = Time
End Function
</script>

Box 2
 
onLoad="TimeMachine()"

Where you want the clock to appear put this
 
<h6 id="mytime">Loading Time</h6>





A javascript (cross browser) version by chrish18

Box 1
 
<script type="text/javascript">
function TimeMachine()
{
   window.setInterval("TimeThis()", 1000);
   return;
}
function TimeThis ()
{
   var now = new Date();
   var hh = now.getHours() < 10 ? "0" + now.getHours() : now.getHours();
   var mm = now.getMinutes() < 10 ? "0" + now.getMinutes() : now.getMinutes();
   var ss = now.getSeconds() < 10 ? "0" + now.getSeconds() : now.getSeconds();
   document.getElementById("mytime").innerHTML = hh + ":" + mm + ":" + ss;
}
</script>

Box 2
 
onload="TimeMachine()"

Where you want the clock to appear put this
 
<h6 id="mytime">Loading time...</h6>



  reply to this message

Click to receive email notification of replies Click to stop receiving email notification of replies email this topic to a friend

New Topic    Add Reply

jump to:
Topic Control Image::: Topic Commands
<< Prev Topic | Next Topic >>

Icon Legend

reply button:::Reply to Post Button   edit button:::Edit Post Button  delete button:::Delete Post Button (Moderator Only)

subscribe/unsubscribe to thread button:::Subscribe to Thread Button   email to friend button:::Email to Friend Button  



- Cool Tips & Tricks - Javascript FAQ -

Communitiesezboard Help Communities:

Help Forums Help Forums Bug Base Bug Base





Powered By ezboard® Ver. 7.32
Copyright ©1999-2007 ezboard, Inc.