Important alert: (current site time 7/15/2013 2:02:33 PM EDT)
 

VB icon

Digital Clock

Email
Submitted on: 6/1/1998
By: Found on the Web 
Level: Not Given
User Rating: By 3 Users
Compatibility: JavaScript
Views: 22473
 
     Here is a clock program written in JavaScript.
 
code:
Can't Copy and Paste this?
Click here for a copy-and-paste friendly version of this code!
				
'**************************************
' Name: Digital Clock
' Description:Here is a clock program written in JavaScript.
' By: Found on the Web
'**************************************

The source code for it is given below. 
<TABLE BORDER=4 BGCOLOR=CYAN>
<TR><TD>
	<FORM NAME="clock_form">
	<INPUT TYPE=TEXT NAME="clock" SIZE=25>
	</FORM>
	<SCRIPT LANGUAGE="JavaScript">
	<!-- Hide from non JavaScript browsers
	function clockTick()
	{
		currentTime = new Date();
		document.clock_form.clock.value = " "+currentTime;
		document.clock_form.clock.blur();
		setTimeout("clockTick()", 1000);
	}
	clockTick();
	// End of clock -->
	</SCRIPT>
</TD></TR>
</TABLE>


Other 219 submission(s) by this author

 


Report Bad Submission
Use this form to tell us if this entry should be deleted (i.e contains no code, is a virus, etc.).
This submission should be removed because:

Your Vote

What do you think of this code (in the Not Given category)?
(The code with your highest vote will win this month's coding contest!)
Excellent  Good  Average  Below Average  Poor (See voting log ...)
 

Other User Comments

 There are no comments on this submission.
 

Add Your Feedback
Your feedback will be posted below and an email sent to the author. Please remember that the author was kind enough to share this with you, so any criticisms must be stated politely, or they will be deleted. (For feedback not related to this particular code, please click here instead.)
 

To post feedback, first please login.